Skip to content

Commit

Permalink
release 0.10.0 (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Feb 13, 2024
1 parent 910a60a commit 860fd02
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 56 deletions.
90 changes: 58 additions & 32 deletions Cargo.lock

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

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["rust-tests"]

[package]
name = "rattler-build"
version = "0.9.0"
version = "0.10.0"
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
homepage = "https://github.com/prefix-dev/rattler-build"
edition = "2021"
Expand All @@ -21,22 +21,22 @@ rustls-tls = ['reqwest/rustls-tls', 'reqwest/rustls-tls-native-roots', 'rattler/
[dependencies]
serde = { version = "1.0.196", features = ["derive"] }
serde_yaml = "0.9.31"
rattler = { version = "0.17.0", default-features = false }
rattler_conda_types = { version = "0.17.0", default-features = false }
rattler_digest = { version = "0.17.0", default-features = false }
rattler_index = { version = "0.17.0", default-features = false }
rattler_networking = { version = "0.17.0", default-features = false }
rattler_repodata_gateway = { version = "0.17.0", default-features = false, features = [
rattler = { version = "0.18.0", default-features = false }
rattler_conda_types = { version = "0.18.0", default-features = false }
rattler_digest = { version = "0.18.0", default-features = false }
rattler_index = { version = "0.18.0", default-features = false }
rattler_networking = { version = "0.18.0", default-features = false }
rattler_repodata_gateway = { version = "0.18.0", default-features = false, features = [
"sparse",
] }
rattler_shell = { version = "0.17.0", default-features = false, features = [
rattler_shell = { version = "0.18.0", default-features = false, features = [
"sysinfo",
] }
rattler_solve = { version = "0.17.0", default-features = false, features = [
rattler_solve = { version = "0.18.0", default-features = false, features = [
"resolvo",
] }
rattler_virtual_packages = { version = "0.17.0", default-features = false }
rattler_package_streaming = { version = "0.17.0", default-features = false }
rattler_virtual_packages = { version = "0.18.0", default-features = false }
rattler_package_streaming = { version = "0.18.0", default-features = false }
anyhow = "1.0.79"
walkdir = "2.4.0"
sha2 = "0.10.8"
Expand Down Expand Up @@ -105,7 +105,7 @@ toml = "0.8.10"
memmap2 = "0.9.4"
os_pipe = "1.1.5"
reqwest-middleware = "0.2.4"
rattler_installs_packages = { version = "0.7.0", default-features = false }
rattler_installs_packages = { version = "0.8.0", default-features = false }
async-once-cell = "0.5.3"

[dev-dependencies]
Expand All @@ -122,17 +122,17 @@ pre-build = [
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH",
]

[patch.crates-io]
rattler = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_conda_types = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_digest = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_index = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_networking = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_repodata_gateway = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_shell = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_solve = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_virtual_packages = { git = "https://github.com/mamba-org/rattler", branch = "main" }
rattler_package_streaming = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# [patch.crates-io]
# rattler = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_conda_types = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_digest = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_index = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_networking = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_repodata_gateway = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_shell = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_solve = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_virtual_packages = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_package_streaming = { git = "https://github.com/mamba-org/rattler", branch = "main" }

# rattler = { path = "../rattler/crates/rattler" }
# rattler_conda_types = { path = "../rattler/crates/rattler_conda_types" }
Expand Down
2 changes: 1 addition & 1 deletion rust-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
glob = "0.3.1"
itertools = "0.12.1"
rattler_package_streaming = { version = "0.17.0", default-features = false }
rattler_package_streaming = { version = "0.18.0", default-features = false }
serde_json = "1.0.113"
sha1 = "0.10.6"
duct = "0.13.7"

0 comments on commit 860fd02

Please sign in to comment.