-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (44 loc) · 857 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
51
52
53
54
[package]
name = "shallow-water"
version = "0.1.0"
authors = ["Ferdia McKeogh <[email protected]>"]
edition = "2021"
[profile.release]
lto = "fat"
panic = "abort"
debug = true
overflow-checks = false
codegen-units = 1
[dependencies]
byteorder = "1.4.3"
ndarray = { version = "0.15.6", features = ["approx", "rayon", "serde"] }
rayon = "1.5.3"
anyhow = "1.0.66"
clap = "2.33"
log = "0.4.17"
quit = "1.1.4"
simplelog = "0.12.0"
bincode = "1.3.3"
serde = { version = "1.0.147", features = ["derive"] }
serde_yaml = "0.9.14"
[dev-dependencies]
approx = "0.4"
criterion = "0.4.0"
insta = "1.21.1"
lazy_static = "1.4.0"
tempdir = "0.3.7"
[[bench]]
name = "spectral"
harness = false
[[bench]]
name = "sta2dfft"
harness = false
[[bench]]
name = "stafft"
harness = false
[[bench]]
name = "setup"
harness = false
[[bench]]
name = "nhswps"
harness = false