Skip to content

Commit 97fa11d

Browse files
committed
Remove unused dependency
1 parent 7ac90f5 commit 97fa11d

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

Cargo.lock

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ malachite-bigint = { workspace = true }
2424
malachite-q = { workspace = true }
2525
malachite-base = { workspace = true }
2626
memchr = { workspace = true }
27-
num-complex = { workspace = true }
2827
num-traits = { workspace = true }
2928
once_cell = { workspace = true }
3029
parking_lot = { workspace = true, optional = true }

pylib/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ rust-version.workspace = true
1010
repository.workspace = true
1111

1212
[features]
13-
freeze-stdlib = []
13+
freeze-stdlib = ["dep:rustpython-compiler-core", "dep:rustpython-derive"]
1414

1515
[dependencies]
16-
rustpython-compiler-core = { workspace = true }
17-
rustpython-derive = { version = "0.4.0", path = "../derive" }
16+
rustpython-compiler-core = { workspace = true, optional = true }
17+
rustpython-derive = { workspace = true, optional = true }
1818

1919
[build-dependencies]
2020
glob = { workspace = true }

stdlib/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ num-traits = { workspace = true }
4242
num_enum = { workspace = true }
4343
once_cell = { workspace = true }
4444
parking_lot = { workspace = true }
45-
thread_local = { workspace = true }
4645

4746
memchr = { workspace = true }
4847
base64 = "0.13.0"

0 commit comments

Comments
 (0)