-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (49 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "wafer"
version = "0.1.0"
authors = ["Tim DuBois <[email protected]>"]
description = """
Wafer exploits a Wick-rotated time-dependent Schrödinger equation to solve for time-independent solutions in three dimensions.
"""
readme = "README.md"
homepage = "http://wafer.tcqp.science"
documentation = "https://libbum.github.io/Wafer/wafer/index.html"
repository = "https://github.com/Libbum/Wafer"
license = "MIT"
build = "build.rs"
[[bin]]
bench = false
path = "src/main.rs"
name = "wafer"
[dependencies]
yansi = "0.4"
chrono = "0.4"
clap = "2.32"
ron = "0.3"
csv = "1.0"
error-chain = "0.12"
indicatif = "0.9"
lazy_static = "1.0"
ndarray = { version = "0.11", features = ["serde-1", "blas"] }
#blas-src = { version = "0.1.2", default-features = false, features = ["openblas"] }
openblas-src = { version = "0.5.6", default-features = false, features = ["cblas", "system"] }
ndarray-parallel = "0.8"
num = "0.2"
num_cpus = "1.8"
noisy_float = { version = "0.1", features = ["serde-1"] }
ordinal = "0.1"
rand = "0.5"
rayon = "1.0"
rmp-serde = "0.13"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.7"
slog = "2.3"
slog-async = "2.3"
slog-term = "2.4"
term_size = "1.0.0-beta1"
[build-dependencies]
vergen = "~0.1.0"
[features]
default = []