-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 889 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 889 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
[package]
name = "rust_experiments"
authors = ["Alexander Öberg <stativetroller7@gmail.com>"]
version = "0.1.0"
edition = "2021"
publish = false
build = "build/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rust_experiments_lib"
path = "src/lib.rs"
[[bin]]
name = "rust_experiments"
path = "src/main.rs"
[dependencies]
rayon = "1.5.1"
zstd = "0.10.0"
scrap = "0.5.0"
crossterm = "0.22.1"
crc32fast = "1.3.1"
xxhash-rust = {version = "0.8.2", features = ["xxh3"]}
[dev-dependencies]
criterion = "0.3.5"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[build-dependencies]
zstd = "0.10.0"
toml = "0.5.8"
serde = { version = "1.0.131", features = ["derive"] }
chrono = "0.4.19"
crc32fast = "1.3.1"
xxhash-rust = {version = "0.8.2", features = ["xxh3"]}
[[bench]]
name = "benchmark"
harness = false