-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
94 lines (84 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "light-curve-feature"
version = "0.7.1"
description = "Feature extractor from noisy time series"
categories = ["science"]
keywords = ["astronomy", "time-series"]
repository = "https://github.com/light-curve/light-curve-feature"
readme = "README.md"
authors = ["Konstantin Malanchev <hombit@gmail.com>"]
license = "GPL-3.0-or-later"
rust-version = "1.67"
edition = "2021"
[lib]
bench = false
[features]
default = ["fftw-source"]
ceres-system = ["ceres-solver/system"]
ceres-source = ["ceres-solver/source"]
fftw-system = ["fftw/system"]
fftw-source = ["fftw/source"]
fftw-mkl = ["fftw/intel-mkl"]
gsl = ["GSL/v2_1"]
[profile.release]
lto = true
codegen-units = 1
[profile.release-with-debug]
inherits = "release"
debug = true
[dependencies]
ceres-solver = { version = "0.3.0", optional = true }
conv = "^0.3.3"
emcee = "^0.3.0"
# Transitive dependency of emcee
emcee_rand = { version = "^0.3.15", package = "rand" }
enum_dispatch = "^0.3.9"
fftw = { version = "^0.8", default-features = false }
GSL = { version = "^7", default-features = false, optional = true }
itertools = "^0.13"
lazy_static = "^1.4"
libm = "^0.2"
macro_const = "^0.1"
ndarray = "^0.16"
ndarray-stats = "^0.6"
num-complex = "^0.4" # the same version as used by fftw
num-traits = "^0.2"
paste = "1"
schemars = "^0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
thread_local = "1.1"
unzip3 = "1"
[dev-dependencies]
light-curve-feature-test-util = { path = "test-util" }
approx = "0.5"
chfft = "0.3.4"
clap = { version = "3.2.6", features = ["std", "color", "suggestions", "derive", "wrap_help", "unstable-v4"] }
criterion = "0.5"
hyperdual = "1.1"
light-curve-common = "0.1.0"
plotters = { version = "0.3.5", default-features = false, features = ["errorbar", "line_series", "ttf"] }
plotters-bitmap = "0.3.3"
rand = "0.8"
rand_distr = "0.4"
rayon = "1.5"
realfft = "3.1"
rustfft = "6.1"
serde_json = "1.0"
serde_test = "1.0"
serde_type_name = "0.2"
[[bench]]
name = "benchmark"
path = "benches/lib.rs"
harness = false
[lints.clippy]
incompatible_msrv = "deny"
[lints.rust]
unexpected_cfgs = "deny"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex-header.html",
]
no-default-features = true
features = ["ceres-source", "fftw-system", "gsl"]