-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
28 lines (26 loc) · 859 Bytes
/
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
[package]
name = "cantata"
version = "0.2.2"
edition = "2021"
rust-version = "1.80.0"
authors = ["T. Hater"]
readme = "Readme.md"
license = "BSD-3-Clause"
repository = "https://github.com/thorstenhater/cantata"
description = "Convert SONATA package neuro science simulations into Arbor simulations."
keywords = ["neuro-science", "science", "simulation"]
categories = ["command-line-utilities"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
clap = { version = "4.0", features = ["derive"] }
thiserror = { version = "1.0" }
anyhow = { version = "1.0.86" }
csv = { version = "1.0" }
hdf5-metno = { version = "0.9.2" }
ciborium = { version = "0.2" }
serde-pickle = { version = "1.1" }
nml2 = { version = "0.3.1"}
[[bin]]
name = "cantata"
path = "src/main.rs"