Skip to content

Commit

Permalink
release: 0.5.1 (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Nov 23, 2023
1 parent f2d7bab commit 0c826a3
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 50 deletions.
68 changes: 39 additions & 29 deletions Cargo.lock

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

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "rattler-build"
version = "0.5.0"
version = "0.5.1"
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
homepage = "https://github.com/prefix-dev/rattler-build"
edition = "2021"
Expand All @@ -20,21 +20,21 @@ rustls-tls = ['reqwest/rustls-tls', 'rattler/rustls-tls']
[dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_yaml = "0.9.27"
rattler = { version = "0.12.2", default-features = false }
rattler_conda_types = { version = "0.12.2", default-features = false }
rattler_digest = { version = "0.12.2", default-features = false }
rattler_networking = { version = "0.12.2", default-features = false }
rattler_repodata_gateway = { version = "0.12.2", default-features = false, features = [
rattler = { version = "0.12.3", default-features = false }
rattler_conda_types = { version = "0.12.3", default-features = false }
rattler_digest = { version = "0.12.3", default-features = false }
rattler_networking = { version = "0.12.3", default-features = false }
rattler_repodata_gateway = { version = "0.12.3", default-features = false, features = [
"sparse",
] }
rattler_shell = { version = "0.12.2", default-features = false, features = [
rattler_shell = { version = "0.12.3", default-features = false, features = [
"sysinfo",
] }
rattler_solve = { version = "0.12.2", default-features = false, features = [
rattler_solve = { version = "0.12.3", default-features = false, features = [
"resolvo",
] }
rattler_virtual_packages = { version = "0.12.2", default-features = false }
rattler_package_streaming = { version = "0.12.2", default-features = false }
rattler_virtual_packages = { version = "0.12.3", default-features = false }
rattler_package_streaming = { version = "0.12.3", default-features = false }
anyhow = "1.0.75"
walkdir = "2.4.0"
sha2 = "0.10.8"
Expand All @@ -45,7 +45,7 @@ tokio = { version = "1.34.0", features = ["rt", "macros", "rt-multi-thread"] }
itertools = "0.12.0"
content_inspector = "0.2.4"
serde_with = "3.4.0"
url = "2.4.1"
url = "2.5.0"
tracing = "0.1.40"
clap = { version = "4.4.8", features = ["derive", "env", "cargo"] }
minijinja = { version = "1.0.10", features = [
Expand Down Expand Up @@ -99,15 +99,15 @@ pre-build = [
]

[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_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 = { 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_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,6 +8,6 @@ edition = "2021"
[dependencies]
glob = "0.3.1"
itertools = "0.12.0"
rattler_package_streaming = { version = "0.12.2", default-features = false }
rattler_package_streaming = { version = "0.12.3", default-features = false }
serde_json = "1.0.108"
sha1 = "0.10.6"

0 comments on commit 0c826a3

Please sign in to comment.