-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "pyimports"
description = "Parse and analyze the imports within a python package"
repository = "https://github.com/Peter554/pyimports"
documentation = "https://docs.rs/pyimports/"
readme = "README.md"
license = "MIT"
version = "0.6.7"
edition = "2021"
exclude = [
".github/*",
"data/*",
"vendor/*",
"Taskfile.yml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
maplit = "1.0.2"
rayon = "1.10.0"
rustpython-parser = "0.4.0"
slotmap = "1.0.7"
thiserror = "2.0.7"
tempdir = "0.3.7"
pathfinding = "4.12.0"
regex = "1.11.1"
lazy_static = "1.5.0"
itertools = "0.14.0"
tap = "1.0.1"
derive_more = { version = "1.0.0", features = ["full"] }
derive-new = "0.7.0"
derive_builder = "0.20.2"
getset = "0.1.3"
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
divan = "0.1.17"
parameterized = "2.0.0"
pretty_assertions = "1.4.1"
[features]
default = []
testutils = []
grimp_compare = ["dep:serde_json"]
[[bench]]
name = "grimp_compare"
harness = false