-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (26 loc) · 875 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
29
30
31
[package]
name = "neuroformats"
version = "0.2.4"
authors = ["Tim Schäfer <[email protected]>"]
edition = "2018"
repository = "https://github.com/dfsp-spirit/neuroformats-rs"
homepage = "https://github.com/dfsp-spirit/neuroformats-rs"
keywords = ["neuroimaging", "brain", "MRI", "fileformats", "neuroscience"]
categories = ["filesystem", "science", "parser-implementations"]
description = "Handling of structural neuroimaging file formats. The focus is on surface-based brain morphometry data and FreeSurfer file formats."
license = "MIT OR Apache-2.0"
exclude = ["/examples", "/resources", ".gitignore"]
[dependencies]
byteordered = "0.5"
flate2 = "1.0"
quick-error = "2.0"
approx = "0.4"
ndarray-stats = "0.4.0"
[dependencies.ndarray]
version = "0.14"
default-features = true
features = ["approx"]
[dev-dependencies]
tempfile = "3.2.0"
[profile.dev]
opt-level = 3