-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
42 lines (35 loc) · 1.05 KB
/
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
[package]
name = "wyrm"
version = "0.9.1"
authors = ["Maciej Kula"]
license = "MIT"
description = "A low-overhead, define-by-run autodifferentiation library."
documentation = "https://docs.rs/wyrm/"
repository = "https://github.com/maciejkula/wyrm"
readme = "readme.md"
[badges]
travis-ci = { repository = "maciejkula/wyrm", branch = "master" }
[features]
fast-math = []
[dependencies]
ndarray = { version = "0.11.0", features = ["serde-1"] }
rand = { version = "0.5.0", features = ["serde1"] }
smallvec = { version = "0.5.0", features = ["serde"] }
itertools = "0.7.3"
rayon = "1.0.0"
serde = { version = "1.0.0", features = ["rc"] }
serde_derive = "1.0.0"
hibitset = "0.5.0"
[dev-dependencies]
ndarray = { version = "0.11.0", features = ["blas", "serde-1"] }
blas-src = { version = "0.1.2", default-features = false, features = ["openblas"] }
openblas-src = { version = "0.5.6", default-features = false, features = ["static"] }
criterion = "0.2.3"
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
lto = true
debug = true
[profile.release]
lto = true