-
Notifications
You must be signed in to change notification settings - Fork 57
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
0281cba
commit 08134ae
Showing
33 changed files
with
142 additions
and
58 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.1.4" | ||
version = "0.1.5" | ||
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.27.9" | ||
version = "0.27.10" | ||
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.1", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.4", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.3", default-features = false } | ||
rattler_shell = { path = "../rattler_shell", version = "0.21.8", default-features = false } | ||
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.5", default-features = false, features = ["reqwest"] } | ||
rattler_cache = { path = "../rattler_cache", version = "0.2.2", default-features = false } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.2", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.4", default-features = false } | ||
rattler_shell = { path = "../rattler_shell", version = "0.22.0", default-features = false } | ||
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.6", default-features = false, features = ["reqwest"] } | ||
reflink-copy = { workspace = true } | ||
regex = { workspace = true } | ||
reqwest = { workspace = true, features = ["stream", "json", "gzip"] } | ||
|
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.27.4" | ||
version = "0.27.5" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Rust data types for common types used within the Conda ecosystem" | ||
|
@@ -12,16 +12,16 @@ readme.workspace = true | |
|
||
[dependencies] | ||
chrono = { workspace = true } | ||
file_url = { path = "../file_url", version = "0.1.4" } | ||
file_url = { path = "../file_url", version = "0.1.5" } | ||
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.1", default-features = false, features = ["serde"] } | ||
rattler_macros = { path = "../rattler_macros", version = "1.0.1", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.2", default-features = false, features = ["serde"] } | ||
rattler_macros = { path = "../rattler_macros", version = "1.0.2", default-features = false } | ||
regex = { workspace = true } | ||
simd-json = { workspace = true , features = ["serde_impl"]} | ||
serde = { workspace = true, features = ["derive", "rc"] } | ||
|
@@ -37,7 +37,7 @@ tracing = { workspace = true } | |
typed-path = { workspace = true } | ||
url = { workspace = true, features = ["serde"] } | ||
indexmap = { workspace = true } | ||
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction" } | ||
rattler_redaction = { version = "0.1.2", path = "../rattler_redaction" } | ||
dirs = { workspace = true } | ||
|
||
[dev-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_digest" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
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.1" | ||
version = "1.0.2" | ||
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.22" | ||
version = "0.22.23" | ||
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.27.4", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false } | ||
file_url = { path = "../file_url", version = "0.1.4" } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.2", default-features = false } | ||
file_url = { path = "../file_url", version = "0.1.5" } | ||
pep508_rs = { workspace = true, features = ["serde"] } | ||
pep440_rs = { workspace = true, features = ["serde"] } | ||
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_macros" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
edition.workspace = true | ||
authors = ["Wolf Vollprecht <[email protected]>"] | ||
description = "A crate that provideds some procedural macros for the rattler project" | ||
|
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.3" | ||
version = "0.21.4" | ||
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.5" | ||
version = "0.22.6" | ||
edition.workspace = true | ||
authors = ["Bas Zalmstra <[email protected]>"] | ||
description = "Extract and stream of Conda package archives" | ||
|
@@ -15,10 +15,10 @@ bzip2 = { workspace = true } | |
chrono = { workspace = true } | ||
futures-util = { workspace = true } | ||
num_cpus = { workspace = true } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.4", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.3", default-features = false } | ||
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] } | ||
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.5", default-features = false } | ||
rattler_digest = { path = "../rattler_digest", version = "1.0.2", default-features = false } | ||
rattler_networking = { path = "../rattler_networking", version = "0.21.4", default-features = false } | ||
rattler_redaction = { version = "0.1.2", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] } | ||
reqwest = { workspace = true, features = ["stream"], optional = true } | ||
reqwest-middleware = { workspace = true, optional = true } | ||
serde_json = { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rattler_redaction" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition.workspace = true | ||
authors = ["Wolf Vollprecht <[email protected]>"] | ||
description = "Redact sensitive information from URLs (ie. conda tokens)" | ||
|
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.