-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35658e9
commit f1801a6
Showing
31 changed files
with
145 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "file_url" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Helper functions to work with file:// urls" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler" | ||
version = "0.28.7" | ||
version = "0.28.8" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Rust library to install conda environments" | ||
|
@@ -32,12 +32,12 @@ memchr = { workspace = true } | |
memmap2 = { workspace = true } | ||
once_cell = { workspace = true } | ||
parking_lot = { workspace = true } | ||
rattler_cache = { path = "../rattler_cache", version = "0.2.15", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.8", default-features = false } | ||
rattler_shell = { path = "../rattler_shell", version = "0.22.10", default-features = false } | ||
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.18", default-features = false, features = ["reqwest"] } | ||
rattler_cache = { path = "../rattler_cache", version = "0.3.0", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.6", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.4", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.9", default-features = false } | ||
rattler_shell = { path = "../rattler_shell", version = "0.22.11", default-features = false } | ||
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.19", default-features = false, features = ["reqwest"] } | ||
rayon = { workspace = true } | ||
reflink-copy = { workspace = true } | ||
regex = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_conda_types" | ||
version = "0.29.5" | ||
version = "0.29.6" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Rust data types for common types used within the Conda ecosystem" | ||
|
@@ -15,15 +15,15 @@ default = ["rayon"] | |
|
||
[dependencies] | ||
chrono = { workspace = true } | ||
file_url = { path = "../file_url", version = "0.2.0" } | ||
file_url = { path = "../file_url", version = "0.2.1" } | ||
fxhash = { workspace = true } | ||
glob = { workspace = true } | ||
hex = { workspace = true } | ||
itertools = { workspace = true } | ||
lazy-regex = { workspace = true } | ||
nom = { workspace = true } | ||
purl = { workspace = true, features = ["serde"] } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false, features = ["serde"] } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.4", default-features = false, features = ["serde"] } | ||
rattler_macros = { path = "../rattler_macros", version = "1.0.3", default-features = false } | ||
regex = { workspace = true } | ||
simd-json = { workspace = true , features = ["serde_impl"]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_digest" | ||
version = "1.0.3" | ||
version = "1.0.4" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "An simple crate used by rattler crates to compute different hashes from different sources" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_libsolv_c" | ||
version = "1.0.3" | ||
version = "1.1.0" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Bindings for libsolv" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_lock" | ||
version = "0.22.34" | ||
version = "0.22.35" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Rust data types for conda lock" | ||
|
@@ -15,9 +15,9 @@ chrono = { workspace = true } | |
fxhash = { workspace = true } | ||
indexmap = { workspace = true, features = ["serde"] } | ||
itertools = { workspace = true } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false } | ||
file_url = { path = "../file_url", version = "0.2.0" } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.6", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.4", default-features = false } | ||
file_url = { path = "../file_url", version = "0.2.1" } | ||
pep508_rs = { workspace = true } | ||
pep440_rs = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_networking" | ||
version = "0.21.8" | ||
version = "0.21.9" | ||
edition.workspace = true | ||
authors = ["Wolf Vollprecht <[email protected]>"] | ||
description = "Authenticated requests in the conda ecosystem" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_package_streaming" | ||
version = "0.22.18" | ||
version = "0.22.19" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Extract and stream of Conda package archives" | ||
|
@@ -16,9 +16,9 @@ chrono = { workspace = true } | |
fs-err = { workspace = true } | ||
futures-util = { workspace = true } | ||
num_cpus = { workspace = true } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.8", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.6", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.4", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.9", default-features = false } | ||
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] } | ||
reqwest = { workspace = true, features = ["stream"], optional = true } | ||
reqwest-middleware = { workspace = true, optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_repodata_gateway" | ||
version = "0.21.27" | ||
version = "0.21.28" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "A crate to interact with Conda repodata" | ||
|
@@ -22,7 +22,7 @@ cache_control = { workspace = true } | |
chrono = { workspace = true, features = ["std", "serde", "alloc", "clock"] } | ||
dashmap = { workspace = true } | ||
dirs = { workspace = true } | ||
file_url = { path = "../file_url", version = "0.2.0" } | ||
file_url = { path = "../file_url", version = "0.2.1" } | ||
futures = { workspace = true } | ||
hex = { workspace = true, features = ["serde"] } | ||
http = { workspace = true, optional = true } | ||
|
@@ -36,9 +36,9 @@ memmap2 = { workspace = true, optional = true } | |
ouroboros = { workspace = true, optional = true } | ||
parking_lot = { workspace = true, optional = true } | ||
pin-project-lite = { workspace = true } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.5", default-features = false, optional = true } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false, features = ["tokio", "serde"] } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.8", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.6", default-features = false, optional = true } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.4", default-features = false, features = ["tokio", "serde"] } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.9", default-features = false } | ||
reqwest = { workspace = true, features = ["stream", "http2"] } | ||
reqwest-middleware = { workspace = true } | ||
rmp-serde = { workspace = true } | ||
|
@@ -54,7 +54,7 @@ tokio-util = { workspace = true, features = ["codec", "io"] } | |
tracing = { workspace = true } | ||
url = { workspace = true, features = ["serde"] } | ||
zstd = { workspace = true } | ||
rattler_cache = { version = "0.2.15", path = "../rattler_cache" } | ||
rattler_cache = { version = "0.3.0", path = "../rattler_cache" } | ||
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] } | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.