Skip to content

Commit

Permalink
feat: Bump dependencies to support new lockfile version (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw authored Dec 2, 2024
1 parent 0601baf commit aff2288
Show file tree
Hide file tree
Showing 16 changed files with 2,513 additions and 1,248 deletions.
73 changes: 48 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pixi-pack"
description = "A command line tool to pack and unpack conda environments for easy sharing"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[features]
Expand All @@ -27,27 +27,27 @@ clap = { version = "4.5.21", features = ["derive", "string"] }
clap-verbosity-flag = "3.0.1"
futures = "0.3.31"
indicatif = "0.17.9"
rattler = { version = "0.28.3", default-features = false }
rattler = { version = "0.28.4", default-features = false }
rattler_digest = "1.0.3"
rattler_conda_types = "0.29.2"
rattler_index = "0.19.36"
rattler_lock = "0.22.31"
rattler_networking = { version = "0.21.6", default-features = false }
rattler_package_streaming = { version = "0.22.11", default-features = false }
rattler_shell = "0.22.7"
rattler_conda_types = "0.29.3"
rattler_index = "0.19.37"
rattler_lock = "0.22.32"
rattler_networking = { version = "0.21.7", default-features = false }
rattler_package_streaming = { version = "0.22.15", default-features = false }
rattler_shell = "0.22.8"
reqwest = { version = "0.12.9", default-features = false, features = [
"http2",
"macos-system-configuration",
] }
reqwest-middleware = "0.3.3"
reqwest-middleware = "0.4.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
tokio-tar = "0.3.1"
tokio = { version = "1.41.1", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = [
tracing-subscriber = { version = "0.3.19", features = [
"default",
"env-filter",
] }
Expand Down
3 changes: 3 additions & 0 deletions examples/repodata-patches/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
In this example, the `libzlib` entry in the `python-3.12.3-h2628c8c_0_cpython.conda`
package is `libzlib >=1.2.13,<1.3.0a0`, but the upstream repodata was patched to
`libzlib >=1.2.13,<2.0.0a0` which is represented in the `pixi.lock` file.
Loading

0 comments on commit aff2288

Please sign in to comment.