-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 753 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 753 Bytes
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
[package]
name = "python_ripgrep"
version = "0.1.0"
edition = "2021"
[lib]
name = "python_ripgrep"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.22.3", features = ["extension-module", "abi3-py38", "generate-import-lib"] }
# Dependencies for ripgrep_core
glob = "0.3"
anyhow = "1.0"
rayon = "1.5"
grep = "0.3.2"
grep-cli = "0.1"
grep-matcher = "0.1"
grep-printer = "0.2.2"
grep-regex = "0.1"
grep-searcher = "0.1"
ignore = "0.4"
log = "0.4"
num_cpus = "1.0"
regex = "1.5"
same-file = "1.0"
walkdir = "2.3"
termcolor = "1.3.0"
bstr = "1.7.0"
[lints.rust]
dead_code = "allow"
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(feature, values("pcre2"))'] }
[lints.clippy]
upper_case_acronyms = "allow"
useless_conversion = "allow"