Skip to content

Commit 5768543

Browse files
committed
Reverts
1 parent 5b9eadf commit 5768543

File tree

5 files changed

+55
-10
lines changed

5 files changed

+55
-10
lines changed

Cargo.lock

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ license = "MIT OR Apache-2.0"
2020
anstream = { version = "0.6.5" }
2121
anyhow = { version = "1.0.79" }
2222
async-compression = { version = "0.4.6" }
23+
async-std = {version = "1.6.0" }
2324
async-tar = { version = "0.4.2" }
2425
async_http_range_reader = { git = "https://github.com/baszalmstra/async_http_range_reader", rev = "8dab2c08ac864fec1df014465264f9a7c8eae905" }
2526
async_zip = { git = "https://github.com/charliermarsh/rs-async-zip", rev = "d76801da0943de985254fc6255c0e476b57c5836", features = ["deflate"] }

crates/puffin-extract/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ workspace = true
1414

1515
[dependencies]
1616
async-compression = { workspace = true, features = ["gzip"] }
17+
async-std = { workspace = true, features = ["unstable"] }
1718
async-tar = { workspace = true }
1819
async_zip = { workspace = true, features = ["tokio"] }
1920
flate2 = { workspace = true }

crates/puffin/tests/pip_compile.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1617,7 +1617,7 @@ fn disallowed_transitive_url_dependency() -> Result<()> {
16171617
let venv = create_venv_py312(&temp_dir, &cache_dir);
16181618

16191619
let requirements_in = temp_dir.child("requirements.in");
1620-
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/14078476/transitive_url_dependency.zip")?;
1620+
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/13257454/transitive_url_dependency.zip")?;
16211621

16221622
insta::with_settings!({
16231623
filters => INSTA_FILTERS.to_vec()
@@ -1654,7 +1654,7 @@ fn allowed_transitive_url_dependency() -> Result<()> {
16541654
let venv = create_venv_py312(&temp_dir, &cache_dir);
16551655

16561656
let requirements_in = temp_dir.child("requirements.in");
1657-
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/14078476/transitive_url_dependency.zip")?;
1657+
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/13257454/transitive_url_dependency.zip")?;
16581658

16591659
let constraints_txt = temp_dir.child("constraints.txt");
16601660
constraints_txt.write_str("werkzeug @ git+https://github.com/pallets/[email protected]")?;
@@ -1679,7 +1679,7 @@ fn allowed_transitive_url_dependency() -> Result<()> {
16791679
----- stdout -----
16801680
# This file was autogenerated by Puffin v[VERSION] via the following command:
16811681
# puffin pip compile requirements.in --constraint constraints.txt --cache-dir [CACHE_DIR]
1682-
transitive-url-dependency @ https://github.com/astral-sh/ruff/files/14078476/transitive_url_dependency.zip
1682+
transitive-url-dependency @ https://github.com/astral-sh/ruff/files/13257454/transitive_url_dependency.zip
16831683
werkzeug @ git+https://github.com/pallets/werkzeug@af160e0b6b7ddd81c22f1652c728ff5ac72d5c74
16841684
# via transitive-url-dependency
16851685
@@ -1702,7 +1702,7 @@ fn allowed_transitive_canonical_url_dependency() -> Result<()> {
17021702
let venv = create_venv_py312(&temp_dir, &cache_dir);
17031703

17041704
let requirements_in = temp_dir.child("requirements.in");
1705-
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/14078476/transitive_url_dependency.zip")?;
1705+
requirements_in.write_str("transitive_url_dependency @ https://github.com/astral-sh/ruff/files/13257454/transitive_url_dependency.zip")?;
17061706

17071707
let constraints_txt = temp_dir.child("constraints.txt");
17081708
constraints_txt.write_str("werkzeug @ git+https://github.com/pallets/[email protected]")?;
@@ -1727,7 +1727,7 @@ fn allowed_transitive_canonical_url_dependency() -> Result<()> {
17271727
----- stdout -----
17281728
# This file was autogenerated by Puffin v[VERSION] via the following command:
17291729
# puffin pip compile requirements.in --constraint constraints.txt --cache-dir [CACHE_DIR]
1730-
transitive-url-dependency @ https://github.com/astral-sh/ruff/files/14078476/transitive_url_dependency.zip
1730+
transitive-url-dependency @ https://github.com/astral-sh/ruff/files/13257454/transitive_url_dependency.zip
17311731
werkzeug @ git+https://github.com/pallets/werkzeug@af160e0b6b7ddd81c22f1652c728ff5ac72d5c74
17321732
# via transitive-url-dependency
17331733

requirements.in

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)