-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 771 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
[package]
name = "sortnetopt"
version = "0.1.0"
authors = ["Jannis Harder <me@jix.one>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true # Enables profiling
[profile.bench]
debug = true # Enables profiling
[dependencies]
log = "0.4.11"
env_logger = "0.7.1"
better-panic = "0.2.0"
jemallocator = "0.3.2"
structopt = "0.3.16"
arrayvec = "0.5.1"
rustc-hash = "1.1.0"
arrayref = "0.3.6"
byteorder = "1.3.4"
num_cpus = "1.13.0"
async-std = "1.6.3"
async-task = "3.0.0"
futures = "0.3.5"
crossbeam-channel = "0.4.3"
abort_on_panic = "2.0.0"
scopeguard = "1.1.0"
pin-utils = "0.1.0"
memmap = "0.7.0"
rayon = "1.3.1"
indicatif = "0.15.0"
[dev-dependencies]
proptest = "0.10.1"