Skip to content

Commit

Permalink
bump: all dependencies (conda#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra authored Oct 5, 2023
1 parent 59db5be commit cc9b9bb
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 62 deletions.
6 changes: 3 additions & 3 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ rustls-tls = ["reqwest/rustls-tls", "rattler/rustls-tls", "rattler_repodata_gate

[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.1", features = ["derive"] }
clap = { version = "4.4.6", features = ["derive"] }
console = { version = "0.15.7", features = ["windows-console-colors"] }
dirs = "5.0.1"
futures = "0.3.28"
indicatif = "0.17.6"
indicatif = "0.17.7"
itertools = "0.11.0"
once_cell = "1.18.0"
rattler = { version = "0.10.0", path = "../rattler", default-features = false }
Expand All @@ -35,7 +35,7 @@ rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
rattler_repodata_gateway = { version = "0.10.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false }
rattler_solve = { version = "0.10.0", path = "../rattler_solve", features = ["resolvo", "libsolv_c"] }
rattler_virtual_packages = { version = "0.10.0", path = "../rattler_virtual_packages" }
reqwest = { version = "0.11.20", default-features = false }
reqwest = { version = "0.11.22", default-features = false }
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }

Expand Down
24 changes: 12 additions & 12 deletions crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ rustls-tls = ['reqwest/rustls-tls', 'rattler_package_streaming/rustls-tls']

[dependencies]
anyhow = "1.0.75"
async-compression = { version = "0.4.2", features = ["gzip", "tokio", "bzip2", "zstd"] }
bytes = "1.4.0"
chrono = { version = "0.4.27", default-features = false, features = ["std", "serde", "alloc"] }
async-compression = { version = "0.4.3", features = ["gzip", "tokio", "bzip2", "zstd"] }
bytes = "1.5.0"
chrono = { version = "0.4.31", default-features = false, features = ["std", "serde", "alloc"] }
digest = "0.10.7"
dirs = "5.0.1"
futures = "0.3.28"
fxhash = "0.2.1"
hex = "0.4.3"
itertools = "0.11.0"
memchr = "2.6.1"
memchr = "2.6.4"
memmap2 = "0.7.1"
nom = "7.1.3"
once_cell = "1.18.0"
Expand All @@ -35,17 +35,17 @@ rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.10.0", path = "../rattler_digest" }
rattler_networking = { version = "0.10.0", path = "../rattler_networking", default-features = false }
rattler_package_streaming = { version = "0.10.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false }
regex = "1.9.4"
reqwest = { version = "0.11.20", default-features = false, features = ["stream", "json", "gzip"] }
regex = "1.9.6"
reqwest = { version = "0.11.22", default-features = false, features = ["stream", "json", "gzip"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.105", features = ["raw_value"] }
serde_json = { version = "1.0.107", features = ["raw_value"] }
serde_with = "3.3.0"
smallvec = { version = "1.11.0", features = ["serde", "const_new", "const_generics", "union"] }
smallvec = { version = "1.11.1", features = ["serde", "const_new", "const_generics", "union"] }
tempfile = "3.8.0"
thiserror = "1.0.47"
thiserror = "1.0.49"
tokio = { version = "1.32.0", features = ["rt", "io-util", "macros"] }
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.8", features = ["codec", "io"] }
tokio-util = { version = "0.7.9", features = ["codec", "io"] }
tracing = "0.1.37"
url = { version = "2.4.1", features = ["serde"] }
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
Expand All @@ -55,9 +55,9 @@ assert_matches = "1.5.0"
rand = "0.8.5"
rstest = "0.18.2"
tracing-test = { version = "0.2.4" }
insta = { version = "1.31.0", features = ["yaml"] }
insta = { version = "1.33.0", features = ["yaml"] }

tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
axum = "0.6.20"
tower-http = { version = "0.4.3", features = ["fs"] }
tower-http = { version = "0.4.4", features = ["fs"] }
tower = { version = "0.4.13", default-features = false, features = ["util"] }
16 changes: 8 additions & 8 deletions crates/rattler_conda_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ license.workspace = true
readme.workspace = true

[dependencies]
chrono = "0.4.27"
chrono = "0.4.31"
fxhash = "0.2.1"
hex = "0.4.3"
indexmap = { version = "2.0.0", features = ["serde"] }
indexmap = { version = "2.0.2", features = ["serde"] }
itertools = "0.11.0"
lazy-regex = "3.0.1"
lazy-regex = "3.0.2"
nom = "7.1.3"
regex = "1.9.4"
regex = "1.9.6"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
serde_json = "1.0.107"
serde-json-python-formatter = "0.1.0"
serde_yaml = "0.9.25"
serde_with = { version = "3.3.0", features = ["indexmap_2"] }
serde_repr = "0.1"
smallvec = { version = "1.11.0", features = ["serde", "const_new", "const_generics", "union"] }
smallvec = { version = "1.11.1", features = ["serde", "const_new", "const_generics", "union"] }
strum = { version = "0.25.0", features = ["derive"] }
thiserror = "1.0.47"
thiserror = "1.0.49"
tracing = "0.1.37"
url = { version = "2.4.1", features = ["serde"] }
rattler_digest = { version = "0.10.0", path = "../rattler_digest", features = ["serde"] }
Expand All @@ -36,7 +36,7 @@ glob = "0.3.1"

[dev-dependencies]
rand = "0.8.5"
insta = { version = "1.31.0", features = ["yaml", "redactions", "toml"] }
insta = { version = "1.33.0", features = ["yaml", "redactions", "toml"] }
rattler_package_streaming = { path = "../rattler_package_streaming", default-features = false, features=["rustls-tls"] }
tempfile = "3.8.0"
rstest = "0.18.2"
Expand Down
8 changes: 4 additions & 4 deletions crates/rattler_digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ digest = "0.10.7"
tokio = { version = "1.32.0", features = ["io-util"], optional = true }
hex = "0.4.3"
serde = { version = "1.0.188", features = ["derive"], optional = true }
sha2 = "0.10.7"
md-5 = "0.10.5"
sha2 = "0.10.8"
md-5 = "0.10.6"
blake2 = "0.10.6"
serde_with = "3.3.0"

Expand All @@ -27,5 +27,5 @@ serde = ["dep:serde"]
[dev-dependencies]
rstest = "0.18.2"
tempfile = "3.8.0"
md-5 = "0.10.5"
serde_json = "1.0.105"
md-5 = "0.10.6"
serde_json = "1.0.107"
4 changes: 2 additions & 2 deletions crates/rattler_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ name = "tests"
path = "tests/tests.rs"

[dependencies]
syn = "2.0.29"
syn = "2.0.37"
quote = "1.0.33"

[dev-dependencies]
trybuild = { version = "1.0.83", features = ["diff"] }
trybuild = { version = "1.0.85", features = ["diff"] }
10 changes: 5 additions & 5 deletions crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ anyhow = "1.0.75"
dirs = "5.0.1"
keyring = "2.0.5"
lazy_static = "1.4.0"
libc = "0.2.147"
reqwest = { version = "0.11.20", default-features = false}
libc = "0.2.148"
reqwest = { version = "0.11.22", default-features = false}
retry-policies = { version = "0.2.0", default-features = false }
serde = "1.0.188"
serde_json = "1.0.105"
thiserror = "1.0.47"
serde_json = "1.0.107"
thiserror = "1.0.49"
tracing = "0.1.37"

[target.'cfg( target_arch = "wasm32" )'.dependencies]
getrandom = { version = "0.2.10", features = ["js"] }

[dev-dependencies]
anyhow = "1.0.75"
insta = { version = "1.31.0", features = ["json"] }
insta = { version = "1.33.0", features = ["json"] }
tempfile = "3.8.0"
10 changes: 5 additions & 5 deletions crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ readme.workspace = true

[dependencies]
bzip2 = "0.4.4"
chrono = "0.4.27"
chrono = "0.4.31"
futures-util = { version = "0.3.28", optional = true }
itertools = "0.11.0"
rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.10.0", path = "../rattler_digest" }
serde_json = "1.0.105"
serde_json = "1.0.107"
tar = { version = "0.4.40" }
thiserror = "1.0.47"
thiserror = "1.0.49"
tokio = { version = "1", optional = true }
tokio-util = { version = "0.7", optional = true }
reqwest = { version = "0.11.20", optional = true, default-features = false }
reqwest = { version = "0.11.22", optional = true, default-features = false }
url = "2.4.1"
zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] }
zstd = { version = "0.12.4", default-features = false }
Expand All @@ -39,6 +39,6 @@ wasm = ["zstd/wasm"]
[dev-dependencies]
tempfile = "3.8.0"
tokio = { version = "1", features = ["rt", "macros"] }
walkdir = "2.3.3"
walkdir = "2.4.0"
rstest = "0.18.2"
rstest_reuse = "0.6.0"
18 changes: 9 additions & 9 deletions crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ license.workspace = true
readme.workspace = true

[dependencies]
async-compression = { version = "0.4.2", features = ["gzip", "tokio", "bzip2", "zstd"] }
async-compression = { version = "0.4.3", features = ["gzip", "tokio", "bzip2", "zstd"] }
blake2 = "0.10.6"
cache_control = "0.2.0"
chrono = { version = "0.4.27", default-features = false, features = ["std", "serde", "alloc", "clock"] }
chrono = { version = "0.4.31", default-features = false, features = ["std", "serde", "alloc", "clock"] }
humansize = "2.1.3"
humantime = "2.1.0"
futures = "0.3.28"
reqwest = { version = "0.11.20", default-features = false, features = ["stream"] }
tokio-util = { version = "0.7.8", features = ["codec", "io"] }
reqwest = { version = "0.11.22", default-features = false, features = ["stream"] }
tokio-util = { version = "0.7.9", features = ["codec", "io"] }
tempfile = "3.8.0"
tracing = "0.1.37"
thiserror = "1.0.47"
thiserror = "1.0.49"
url = { version = "2.4.1", features = ["serde"] }
tokio = { version = "1.32.0", features = ["rt", "io-util"] }
anyhow = "1.0.75"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.105" }
serde_json = { version = "1.0.107" }
pin-project-lite = "0.2.13"
md-5 = "0.10.5"
md-5 = "0.10.6"
rattler_digest = { version = "0.10.0", path = "../rattler_digest", features = ["tokio", "serde"] }
rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types", optional = true }
fxhash = { version = "0.2.1", optional = true }
Expand All @@ -50,9 +50,9 @@ windows-sys = { version = "0.48.0", features = ["Win32_Storage_FileSystem", "Win

[dev-dependencies]
hex-literal = "0.4.1"
tower-http = { version = "0.4.3", features = ["fs", "compression-gzip", "trace"] }
tower-http = { version = "0.4.4", features = ["fs", "compression-gzip", "trace"] }
tracing-test = { version = "0.2.4" }
insta = { version = "1.31.0", features = ["yaml"] }
insta = { version = "1.33.0", features = ["yaml"] }
axum = "0.6.20"
assert_matches = "1.5.0"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/rattler_shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ readme.workspace = true

[dependencies]
enum_dispatch = "0.3.12"
indexmap = "2.0.0"
indexmap = "2.0.2"
itertools = "0.11.0"
rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
serde_json = { version = "1.0.105", features = ["preserve_order"] }
shlex = "1.1.0"
sysinfo = { version = "0.29.9", optional = true }
serde_json = { version = "1.0.107", features = ["preserve_order"] }
shlex = "1.2.0"
sysinfo = { version = "0.29.10", optional = true }
tempfile = "3.8.0"
thiserror = "1.0.47"
thiserror = "1.0.49"
tracing = "0.1.37"

[dev-dependencies]
insta = { version = "1.31.0", features = ["yaml"] }
insta = { version = "1.33.0", features = ["yaml"] }
tempdir = "0.3.7"
8 changes: 4 additions & 4 deletions crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.10.0", path = "../rattler_digest" }
libc = { version = "0.2", optional = true }
anyhow = "1.0.75"
chrono = "0.4.27"
thiserror = "1.0.47"
chrono = "0.4.31"
thiserror = "1.0.49"
tracing = "0.1.37"
itertools = "0.11.0"
serde = { version = "1.0.188", features = ["derive"] }
Expand All @@ -28,9 +28,9 @@ resolvo = { version = "0.1.0", optional = true }

[dev-dependencies]
rattler_repodata_gateway = { version = "0.10.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] }
insta = { version = "1.31.0", features = ["yaml"] }
insta = { version = "1.33.0", features = ["yaml"] }
rstest = "0.18.2"
serde_json = "1.0.105"
serde_json = "1.0.107"
url = "2.4.1"
similar-asserts = "1.5.0"
once_cell = "1.18.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler_virtual_packages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ readme.workspace = true

[dependencies]
cfg-if = "1.0.0"
libloading = "0.8.0"
libloading = "0.8.1"
nom = "7.1.3"
once_cell = "1.18.0"
rattler_conda_types = { version = "0.10.0", path = "../rattler_conda_types" }
thiserror = "1.0.47"
thiserror = "1.0.49"
tracing = "0.1.37"
serde = { version = "1.0.188", features = ["derive"] }
regex = "1.9.4"
regex = "1.9.6"

[target.'cfg(target_os="macos")'.dependencies]
plist = "1"
2 changes: 1 addition & 1 deletion crates/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
clap = { version = "4.4.1", features = ["derive"] }
clap = { version = "4.4.6", features = ["derive"] }
bindgen = "0.66.1"
anyhow = "1.0.75"
difference = "2.0.0"
Expand Down

0 comments on commit cc9b9bb

Please sign in to comment.