-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
30 lines (27 loc) · 870 Bytes
/
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
[package]
name = "deptryrs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "deptry"
crate-type = ["cdylib"]
[dependencies]
chardetng = "=0.1.17"
encoding_rs = "=0.8.35"
ignore = "=0.4.23"
log = "=0.4.22"
path-slash = "=0.2.1"
pyo3 = { version = "=0.23.3", features = ["abi3-py39", "generate-import-lib"] }
pyo3-log = "=0.12.1"
rayon = "=1.10.0"
regex = "=1.11.1"
ruff_python_ast = { git = "https://github.com/astral-sh/ruff", tag = "0.8.1" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff", tag = "0.8.1" }
ruff_source_file = { git = "https://github.com/astral-sh/ruff", tag = "0.8.1" }
ruff_text_size = { git = "https://github.com/astral-sh/ruff", tag = "0.8.1" }
serde_json = "=1.0.133"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"