-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
46 lines (38 loc) · 1.11 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
[workspace]
members = ["python"]
[package]
name = "strobealign"
version = "0.18.0-alpha"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
cc = "1.0"
[dependencies]
clap = { version = "4.1.4", features = ["derive"] }
fastrand = { version = "2.0.1", default-features = false }
log = { version = "0.4.20", features = ["std"]}
memchr = "2.7.1"
sigpipe = "0.1.3"
flate2 = { version = "1.0", features = ["zlib-rs"]}
thiserror = "2.0.11"
rayon = "1.11.0"
mimalloc = "0.1.48"
[target.'cfg(target_arch = "wasm32-wasi")'.dependencies]
block-aligner = { version = "0.5", features = ["simd_wasm"] }
[target.'cfg(target_arch = "x86_64")'.dependencies]
block-aligner = { version = "0.5", features = ["simd_avx2"] }
[target.'cfg(target_arch = "aarch64")'.dependencies]
block-aligner = { version = "0.5", features = ["simd_neon"] }
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1.3"
temp-dir = "0.2.0"
temp-file = "0.1.9"
[profile.dev]
opt-level = 1
[profile.release]
codegen-units = 1
lto = true
[profile.profiling]
inherits = "release"
debug = true