forked from clemson-cal/app-binary2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.35 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
[package]
name = "binary2d"
version = "0.2.1"
edition = "2018"
description = "Clemson CAL Circumbinary Disk Code (CDC)"
authors = ["Jonathan Zrake", "Christopher Tiede", "John Ryan Westernacher-Schneider", "Jack Hu"]
readme = "README.md"
repository = "https://github.com/clemson-cal/app-binary2d"
[dependencies]
libm = "0.2.1"
glob = "0.3"
anyhow = "1.0"
thiserror = "1.0"
num_cpus = "1.0"
git-version = "0.3"
futures = "0.3"
async-trait = "0.1"
ciborium = "0.1"
serde_yaml = "0.8"
yaml-patch = "0.1"
derive_more = "0.9"
ndarray = { version = "0.14", features = ["serde"] }
num = { version = "0.3", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["rt-multi-thread"] }
kepler-two-body = { git = "https://github.com/clemson-cal/kepler-two-body", features = ["serde"] }
hydro-iso2d = { git = "https://github.com/clemson-cal/hydro-iso2d", features = ["serde"] }
hydro-euler = { git = "https://github.com/clemson-cal/hydro-euler", features = ["serde"] }
godunov-core = { git = "https://github.com/clemson-cal/godunov-core", features = ["serde"] }
ndarray-ops = { git = "https://github.com/clemson-cal/ndarray-ops" }
[profile.release]
lto = "thin"