forked from fpgmaas/deptry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 841 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.34"
ignore = "0.4.22"
log = "0.4.21"
path-slash = "0.2.1"
pyo3 = { version = "0.21.2", features = ["abi3-py38"] }
pyo3-log = "0.10.0"
rayon = "1.10.0"
regex = "1.10.4"
ruff_python_ast = { git = "https://github.com/astral-sh/ruff", tag = "v0.4.2" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff", tag = "v0.4.2" }
ruff_source_file = { git = "https://github.com/astral-sh/ruff", tag = "v0.4.2" }
ruff_text_size = { git = "https://github.com/astral-sh/ruff", tag = "v0.4.2" }
serde_json = "1.0.116"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"