-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 933 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (39 loc) · 933 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
40
41
42
43
44
45
46
[package]
name = "gitripper"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.51", features = ["derive"] }
regex = "1.12.2"
reqwest = { version = "0.13.1", features = ["blocking", "json", "gzip"] }
serde_json = "1.0.145"
anyhow = "1.0.100"
tempfile = "3.23.0"
zip = { version = "7.1.0", optional = true, default-features = false, features = ["deflate"] }
once_cell = "1.18.0"
phf = { version = "0.13.1", features = ["macros"] }
rayon = "1.7"
git2 = "0.20.3"
memmap2 = "0.9.9"
ignore = "0.4.25"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
panic = "abort"
[profile.release.build-override]
opt-level = 0
codegen-units = 16
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3.23.0"
[features]
zip = ["dep:zip"]
default = ["zip"]
[[bench]]
name = "url_parsing"
harness = false
[[bench]]
name = "zip_extraction"
harness = false