-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
60 lines (54 loc) · 1.24 KB
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
51
52
53
54
55
56
57
58
59
60
[package]
name = "nailpolish"
version = "0.2.1"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
chrono = "0.4.38"
clap = { version = "4.5.7", features = ["derive"] }
csv = "1.3.0"
env_logger = "0.11.3"
handlebars = "6.2.0"
indexmap = "2.5.0"
lazy_static = "1.4.0"
log = "0.4.22"
needletail = "^0.6.3"
rayon = "1.10.0"
regex = "1.10.6"
spoa = { path = "deps/spoa-rs" }
thiserror = "1.0.64"
predicates = "3.1.2"
indoc = "2.0.5"
rkyv = { version = "0.8.10", features = [
"alloc",
"bytecheck",
"std",
"indexmap-2",
"smallvec-1",
"pointer_width_64",
] }
smallvec = "1.15.0"
memmap = "0.7.0"
itertools = "0.14.0"
git-version = "0.3.9"
serde = { version = "1.0.219", features = ["serde_derive"] }
serde_json = "1.0.140"
humansize = "2.1.3"
libc = "0.2.172"
indexed_deflate = "0.1.0"
[[bin]]
name = "nailpolish"
[workspace.metadata.cross.target.x86_64-unknown-linux-gnu]
# use CentOS7-compatible builder (supports libc 2.17)
image = "ghcr.io/olliecheng/images:cross-x86-centos"
[profile.test]
opt-level = 3
# create a separate profile for debug profiling
[profile.profiling]
inherits = "release"
debug = true
[features]
simde = ["spoa/simde"]
nonative = ["spoa/nonative"]