-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
50 lines (42 loc) · 907 Bytes
/
Cargo.toml
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
[package]
name = "simd_rand"
version = "0.1.0"
edition = "2021"
[profile.release]
panic = "abort"
lto = true
opt-level = 3
debug = "none"
codegen-units = 1
[dependencies]
rand_core = "0.6"
[dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] }
# packed_simd = { version = "0.3" }
num-traits = "0.2"
dhat = "0.3.2"
criterion = { version = "0.5", features = ["html_reports"] }
criterion-perf-events = "0.4"
perfcnt = "0.8"
itertools = "0.11.0"
rand_xoshiro = "0.6.0"
serial_test = "2.0.0"
rust_decimal = { version = "1.30.0", features = ["maths"] }
rust_decimal_macros = "1.30.0"
[lib]
bench = false
[[bench]]
name = "main"
harness = false
[[example]]
name = "dasm"
path = "examples/_internal/dasm.rs"
bench = false
[[example]]
name = "profile"
path = "examples/_internal/profile.rs"
bench = false
[[example]]
name = "practrand"
path = "examples/_internal/practrand.rs"
bench = false