forked from uob-positron-imaging-centre/up4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.17 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
[package]
name = "upppp_rust"
version = "0.1.0"
edition = "2021"
authors = ["Dominik Werner, Daniel Weston"]
[lib]
name = "upppp_rust"
crate-type = ["cdylib", "rlib"]
# TODO consider using thiserror for error handling
[dependencies]
anyhow = "1.0.69"
colorous = "1.0.5"
csv = "1.1.6"
derive-getters = "0.2.0"
dyn-clone = "1.0"
#hdf5 = { version = "0.8.1" }#, features = ["blosc"]}
hdf5 = { git = "https://github.com/aldanor/hdf5-rust.git" }
indicatif = "=0.17.7"
itertools = "0.10.1"
natord = "1.0.9"
ndarray = "0.15.6"
ndarray-csv = { version = "0.5.1" }
ndarray-stats = "0.5.0"
num-traits = "0.2.14"
numpy = "0.20.0"
#plotly = "0.8.4"
plotly = { git = "https://github.com/DanW97/plotly.git"}
polyfit-rs = "0.2.0"
pyo3 = { version = "0.20.0", features = ["extension-module"] }
rayon = "1.5.3"
regex = "1"
vtkio ={ git = "https://github.com/elrnv/vtkio", branch = "release-0.7" }
[features]
# Debuging feature to print statements
# if activated
# default = ["blosc"]
uPPPP_debug = []
uPPPP_warning = []
python = []
blosc = []
#[profile.dev]##opt-level = 0 # Use slightly better optimizations.
[profile.release]
incremental = true
debug = true
lto = "fat"
[rust]
debuginfo-level = 1