SummationByParts/multigrid/Cargo.toml

26 lines
668 B
TOML
Raw Normal View History

2020-04-12 10:43:14 +00:00
[package]
name = "multigrid"
version = "0.1.0"
2021-03-16 18:00:24 +00:00
authors = ["Magnus Ulimoen <magnus@ulimoen.dev>"]
2020-04-12 10:43:14 +00:00
edition = "2018"
2020-04-12 10:35:16 +00:00
2020-04-12 10:43:14 +00:00
[dependencies]
2021-03-23 18:21:38 +00:00
sbp = { path = "../sbp", features = ["serde1"] }
2020-09-03 19:30:28 +00:00
euler = { path = "../euler", features = ["serde1"] }
hdf5 = "0.7.0"
2021-03-22 18:28:01 +00:00
integrate = { path = "../utils/integrate" }
2020-04-12 10:43:14 +00:00
rayon = "1.3.0"
2021-08-17 13:15:36 +00:00
indicatif = "0.17.0-beta.1"
2021-03-16 18:03:13 +00:00
ndarray = { version = "0.14.0", features = ["serde"] }
2020-09-03 19:30:28 +00:00
serde = { version = "1.0.115", features = ["derive"] }
json5 = "0.3.0"
2020-09-03 19:30:28 +00:00
indexmap = { version = "1.5.2", features = ["serde-1"] }
argh = "0.1.4"
2021-07-06 20:10:33 +00:00
evalexpr = "6.3.0"
2021-08-03 14:18:20 +00:00
crossbeam-channel = "0.5.0"
crossbeam-utils = "0.8.5"
2021-08-20 15:57:12 +00:00
parking_lot = "0.11.1"
lock_api = "0.4.4"
2021-08-21 09:29:45 +00:00
arrayvec = "0.7.1"