-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (50 loc) · 1.44 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
54
55
56
57
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"crates/*",
"py-xraytsubaki",
# "examples/*",
]
default-members = ["crates/*"]
# exclude = [
# "examples/datasets",
# ]
[workspace.package]
name = "xraytsubaki"
version = "0.1.0"
edition = "2021"
authors = ["Ryuichi Shimogawa <ryuichi.shimogawa@stonybrook.edu"]
homepage = "https://github.com/Ameyanagi/xraytsubaki"
repository = "https://github.com/Ameyanagi/xraytsubaki"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
easyfft = { version = "0.4.1", features = ["serde"] }
semver = { version = "1.0.22" }
approx = "0.5.1"
data_reader = "0.5.0"
errorfunctions = "0.2.0"
fftconvolve = "0.1.1"
ndarray = { version = "0.15.6", features = ["approx", "serde"] }
itertools = "0.12.0"
lazy_static = "1.4.0"
levenberg-marquardt = "0.13.1"
nalgebra = "0.32.4"
num-complex = { version = "0.4.5", features = ["serde"] }
polyfit-rs = "0.2.1"
rusty-fitpack = "0.1.2"
rayon = "1.8.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_arrow = { version = "0.10.0", features = ["arrow2-0-17", "arrow-46"] }
serde_json = "1.0.114"
bson = "2.9.0"
version = "3.0.0"
derivative = "2.2.0"
flate2 = "1.0.28"
pest = "2.7.7"
xraytsubaki = { version = "0.1.0", path = "crates/xraytsubaki" }
[workspace.dependencies.enterpolation]
version = "0.2.1"
default-features = false
# re-enable all wanted features
features = ["std", "linear"]