-
-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (52 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "pipdeptree"
# Placeholder: the authoritative release version lives in the VERSION file and is wired into the
# binary through build.rs (PIPDEPTREE_VERSION); this crate is never published to crates.io.
version = "0.0.0"
description = "Display Python package dependency trees"
repository = "https://github.com/tox-dev/pipdeptree"
license = "MIT"
edition = "2024"
rust-version = "1.85"
[lib]
name = "_pipdeptree"
path = "rust/src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[test]]
name = "public_api"
path = "rust/tests/public_api.rs"
[dependencies]
anstyle = "1.0.14"
clap = { version = "4.6.1", features = ["derive", "string"] }
csv = "1.4.0"
glob = "0.3.3"
pep508_rs = "0.9.2"
pyo3 = "0.29.0"
rayon = "1.12.0"
rustc-hash = "2.1.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150", features = ["preserve_order"] }
tempfile = "3.27.0"
thiserror = "2.0.18"
toml = "1.1.2"
url = "2.5.8"
[target.'cfg(windows)'.dependencies]
pyo3 = { version = "0.29.0", features = ["generate-import-lib"] }
[dev-dependencies]
mockall = "0.15.0"
rstest = "0.26.1"
temp-env = "0.3.6"
[features]
extension-module = ["pyo3/extension-module"]
abi3 = ["pyo3/abi3-py310"]
default = ["extension-module"]
[lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
codegen-units = 1
lto = "fat"
strip = true