forked from droundy/sad-monte-carlo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (44 loc) · 1.21 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
54
55
56
[package]
name = "sad-monte-carlo"
version = "0.1.0"
authors = ["David Roundy <[email protected]>"]
edition = "2018"
description = "Monte Carlo statistical mechanics simulation"
license = "MIT/Apache-2.0"
repository = "https://github.com/droundy/sad-monte-carlo"
readme = "README.md"
categories = ["algorithms", "science", "simulations"]
keywords = ["monte", "carlo", "simulations", "physics", "chemistry"]
[lib]
name = "sadmc"
path = "src/lib.rs"
[dependencies]
# dimensioned = { version = "0.7.0", features=["serde", "auto-args"] }
dimensioned = { git = "https://github.com/droundy/dimensioned", features=["serde", "auto-args"] }
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.8.11"
serde_cbor = "0.10"
serde_json = "1.0"
auto-args = "0.2.7"
internment = "0.3.2"
vector3d = { version = "0.2.1", features=["serde1", "auto-args"] }
statrs = "0.7.0"
rand_core = "0.5.1"
rand = "0.7.2"
rand_distr = "0.2.2"
rand_xoshiro = { version = "0.4", features=["serde1"] }
tempfile = "3.0.3"
git-version = "0.3.0"
rayon = "1.4"
[dev-dependencies]
criterion = "0.3"
difference = "2.0"
# [profile.release]
# debug = true
[features]
# Treat warnings as a build error.
strict = []
[[bench]]
name = "bench-sad"
harness = false