Skip to content

Commit

Permalink
feat: use the gateway to fetch repodata (#1307)
Browse files Browse the repository at this point in the history
Co-authored-by: Ruben Arts <[email protected]>
  • Loading branch information
baszalmstra and ruben-arts authored May 14, 2024
1 parent 352bdae commit 1ec1b90
Show file tree
Hide file tree
Showing 25 changed files with 1,953 additions and 1,787 deletions.
93 changes: 64 additions & 29 deletions Cargo.lock

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

36 changes: 20 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,28 +72,30 @@ miette = { version = "7.2.0", features = [
] }
minijinja = { version = "1.0.20", features = ["builtins"] }
once_cell = "1.19.0"
parking_lot = "0.12.2"
pep440_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
pep508_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
platform-tags = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
pypi-types = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
pyproject-toml = "0.10.0"
rattler = { version = "0.24.0", default-features = false, features = [
rattler = { version = "0.24.1", default-features = false, features = [
"cli-tools",
] }
rattler_conda_types = { version = "0.22.1", default-features = false }
rattler_conda_types = { version = "0.23.0", default-features = false }
rattler_digest = { version = "0.19.3", default-features = false }
rattler_lock = { version = "0.22.5", default-features = false }
rattler_networking = { version = "0.20.5", default-features = false }
rattler_repodata_gateway = { version = "0.19.11", default-features = false, features = [
rattler_lock = { version = "=0.22.6", default-features = false }
rattler_networking = { version = "0.20.6", default-features = false }
rattler_repodata_gateway = { version = "0.20.1", default-features = false, features = [
"sparse",
"gateway"
] }
rattler_shell = { version = "0.20.2", default-features = false, features = [
"sysinfo",
] }
rattler_solve = { version = "0.21.1", default-features = false, features = [
rattler_solve = { version = "0.21.2", default-features = false, features = [
"resolvo",
] }
rattler_virtual_packages = { version = "0.19.9", default-features = false }
rattler_virtual_packages = { version = "0.19.10", default-features = false }
regex = "1.10.4"
requirements-txt = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
reqwest = { version = "0.12.4", default-features = false, features = ["http2", "macos-system-configuration"] }
Expand Down Expand Up @@ -166,15 +168,17 @@ toml = "0.8.12"
pep440_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
pep508_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.38" }
# deno_task_shell = { path = "../deno_task_shell" }
# rattler = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_conda_types = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_digest = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_lock = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_networking = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_repodata_gateway = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_shell = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_solve = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }
# rattler_virtual_packages = { git = "https://github.com/baszalmstra/rattler", branch = "feat/pypi_indexes" }

#rattler = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_conda_types = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_digest = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_lock = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_networking = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_repodata_gateway = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_shell = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_solve = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }
#rattler_virtual_packages = { git = "https://github.com/baszalmstra/rattler", branch = "feat/gateway_v3" }

#rattler_conda_types = { path = "../rattler/crates/rattler_conda_types" }
#rattler_digest = { path = "../rattler/crates/rattler_digest" }
#rattler_networking = { path = "../rattler/crates/rattler_networking" }
Expand Down
Loading

0 comments on commit 1ec1b90

Please sign in to comment.