diff --git a/Cargo.toml b/Cargo.toml index f8a3135d8..d11b95e30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ opt-level = 3 opt-level = 3 [workspace.package] -version = "0.7.0" +version = "0.8.0" categories = ["conda"] homepage = "https://github.com/mamba-org/rattler" repository = "https://github.com/mamba-org/rattler" diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml index 748b4fe08..0a1e72428 100644 --- a/crates/rattler-bin/Cargo.toml +++ b/crates/rattler-bin/Cargo.toml @@ -29,12 +29,12 @@ futures = "0.3.28" indicatif = "0.17.5" itertools = "0.11.0" once_cell = "1.18.0" -rattler = { version = "0.7.0", path = "../rattler", default-features = false } -rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false } -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } -rattler_repodata_gateway = { version = "0.7.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false } -rattler_solve = { version = "0.7.0", path = "../rattler_solve", features = ["libsolv_rs", "libsolv_c"] } -rattler_virtual_packages = { version = "0.7.0", path = "../rattler_virtual_packages" } +rattler = { version = "0.8.0", path = "../rattler", default-features = false } +rattler_networking = { version = "0.8.0", path = "../rattler_networking", default-features = false } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } +rattler_repodata_gateway = { version = "0.8.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false } +rattler_solve = { version = "0.8.0", path = "../rattler_solve", features = ["libsolv_rs", "libsolv_c"] } +rattler_virtual_packages = { version = "0.8.0", path = "../rattler_virtual_packages" } reqwest = { version = "0.11.18", default-features = false } tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } diff --git a/crates/rattler/Cargo.toml b/crates/rattler/Cargo.toml index 50c9c346c..4f81df8bc 100644 --- a/crates/rattler/Cargo.toml +++ b/crates/rattler/Cargo.toml @@ -31,10 +31,10 @@ memmap2 = "0.7.1" nom = "7.1.3" once_cell = "1.18.0" pin-project-lite = "0.2.10" -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.7.0", path = "../rattler_digest" } -rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false } -rattler_package_streaming = { version = "0.7.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.8.0", path = "../rattler_digest" } +rattler_networking = { version = "0.8.0", path = "../rattler_networking", default-features = false } +rattler_package_streaming = { version = "0.8.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false } regex = "1.9.1" reqwest = { version = "0.11.18", default-features = false, features = ["stream", "json", "gzip"] } serde = { version = "1.0.171", features = ["derive"] } diff --git a/crates/rattler_conda_types/Cargo.toml b/crates/rattler_conda_types/Cargo.toml index 029445f1f..58679aaf5 100644 --- a/crates/rattler_conda_types/Cargo.toml +++ b/crates/rattler_conda_types/Cargo.toml @@ -29,8 +29,8 @@ strum = { version = "0.25.0", features = ["derive"] } thiserror = "1.0.43" tracing = "0.1.37" url = { version = "2.4.0", features = ["serde"] } -rattler_digest = { version = "0.7.0", path = "../rattler_digest", features = ["serde"] } -rattler_macros = { version = "0.7.0", path = "../rattler_macros" } +rattler_digest = { version = "0.8.0", path = "../rattler_digest", features = ["serde"] } +rattler_macros = { version = "0.8.0", path = "../rattler_macros" } glob = "0.3.1" [dev-dependencies] diff --git a/crates/rattler_libsolv_rs/Cargo.toml b/crates/rattler_libsolv_rs/Cargo.toml index 252314866..1f21e243d 100644 --- a/crates/rattler_libsolv_rs/Cargo.toml +++ b/crates/rattler_libsolv_rs/Cargo.toml @@ -13,7 +13,7 @@ readme.workspace = true [dependencies] itertools = "0.11.0" petgraph = "0.6.3" -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } tracing = "0.1.37" [dev-dependencies] diff --git a/crates/rattler_package_streaming/Cargo.toml b/crates/rattler_package_streaming/Cargo.toml index a319908e6..9f86bc7f4 100644 --- a/crates/rattler_package_streaming/Cargo.toml +++ b/crates/rattler_package_streaming/Cargo.toml @@ -15,8 +15,8 @@ bzip2 = { version = "0.4" } chrono = "0.4.26" futures-util = { version = "0.3.28", optional = true } itertools = "0.11.0" -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.7.0", path = "../rattler_digest" } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.8.0", path = "../rattler_digest" } serde_json = "1.0.102" tar = { version = "0.4.38" } thiserror = "1.0.43" @@ -26,7 +26,7 @@ reqwest = { version = "0.11.18", optional = true, default-features = false } url = "2.4.0" zip = { version = "0.6.6" } zstd = "0.12.3" -rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false } +rattler_networking = { version = "0.8.0", path = "../rattler_networking", default-features = false } [features] default = ['native-tls'] diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml index 1448384c3..0bb1291a9 100644 --- a/crates/rattler_repodata_gateway/Cargo.toml +++ b/crates/rattler_repodata_gateway/Cargo.toml @@ -30,8 +30,8 @@ serde = { version = "1.0.171", features = ["derive"] } serde_json = { version = "1.0.102" } pin-project-lite = "0.2.10" md-5 = "0.10.5" -rattler_digest = { version = "0.7.0", path = "../rattler_digest", features = ["tokio", "serde"] } -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types", optional = true } +rattler_digest = { version = "0.8.0", path = "../rattler_digest", features = ["tokio", "serde"] } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types", optional = true } fxhash = { version = "0.2.1", optional = true } memmap2 = { version = "0.7.1", optional = true } ouroboros = { version = "0.17.0", optional = true } @@ -40,7 +40,7 @@ superslice = { version = "1.0.0", optional = true } itertools = { version = "0.11.0", optional = true } json-patch = "1.0.0" hex = { version = "0.4.3", features = ["serde"] } -rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false } +rattler_networking = { version = "0.8.0", path = "../rattler_networking", default-features = false } [target.'cfg(unix)'.dependencies] libc = "0.2" diff --git a/crates/rattler_shell/Cargo.toml b/crates/rattler_shell/Cargo.toml index 8b3502f22..a4fae659c 100644 --- a/crates/rattler_shell/Cargo.toml +++ b/crates/rattler_shell/Cargo.toml @@ -14,7 +14,7 @@ readme.workspace = true enum_dispatch = "0.3.12" indexmap = "2.0.0" itertools = "0.11.0" -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } serde_json = { version = "1.0.102", features = ["preserve_order"] } shlex = "1.1.0" sysinfo = { version = "0.29.4", optional = true } diff --git a/crates/rattler_solve/Cargo.toml b/crates/rattler_solve/Cargo.toml index aa2a05c80..30c43ee8e 100644 --- a/crates/rattler_solve/Cargo.toml +++ b/crates/rattler_solve/Cargo.toml @@ -11,8 +11,8 @@ license.workspace = true readme.workspace = true [dependencies] -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.7.0", path = "../rattler_digest" } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.8.0", path = "../rattler_digest" } libc = { version = "0.2", optional = true } anyhow = "1.0.71" thiserror = "1.0.43" @@ -21,11 +21,11 @@ serde = { version = "1.0.171", features = ["derive"] } url = "2.4.0" hex = "0.4.3" tempfile = "3.6.0" -rattler_libsolv_c = { version = "0.7.0", path = "../rattler_libsolv_c", optional = true } -rattler_libsolv_rs = { version = "0.7.0", path = "../rattler_libsolv_rs", optional = true } +rattler_libsolv_c = { version = "0.8.0", path = "../rattler_libsolv_c", optional = true } +rattler_libsolv_rs = { version = "0.8.0", path = "../rattler_libsolv_rs", optional = true } [dev-dependencies] -rattler_repodata_gateway = { version = "0.7.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] } +rattler_repodata_gateway = { version = "0.8.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] } insta = { version = "1.30.0", features = ["yaml"] } rstest = "0.18.1" serde_json = "1.0.102" diff --git a/crates/rattler_virtual_packages/Cargo.toml b/crates/rattler_virtual_packages/Cargo.toml index b4ff0fca8..28d0e76df 100644 --- a/crates/rattler_virtual_packages/Cargo.toml +++ b/crates/rattler_virtual_packages/Cargo.toml @@ -15,7 +15,7 @@ cfg-if = "1.0.0" libloading = "0.8.0" nom = "7.1.3" once_cell = "1.18.0" -rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.8.0", path = "../rattler_conda_types" } thiserror = "1.0.43" tracing = "0.1.37" serde = { version = "1.0.171", features = ["derive"] }