-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (50 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (50 loc) · 1.5 KB
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
[package]
name = "ridal"
version = "0.5.2"
edition = "2021"
readme = "README.md"
description="Speeding up Ground Penetrating Radar (GPR) processing"
license-file="LICENSE"
repository="https://github.com/erikmannerfelt/ridal"
authors = ["Erik Schytt Mannerfelt"]
[lib]
name = "ridal_lib"
crate-type = ["cdylib"]
path = "src/lib.rs"
[[bin]]
name = "ridal"
path = "src/main.rs"
[dependencies]
pyo3 = { version = "0.28.3", optional = true}
numpy = { version = "0.28", optional = true }
ndarray = "0.17" # For base ndarrays
ndarray-stats = "0.7" # For ndarray statistics
chrono = "0.4" # Convert timestamps to seconds before epoch
image = "0.24" # Write images
smartcore = "0.3" # (Linear) regression packages
noisy_float = "0.2" # For inputs to ndarray-stats
rayon = "1.10" # For parallelization of functions
clap = { version = "4.5", features = ["derive"] }
geomorph = "2.0" # UTM zone conversion functions
utm = "0.1" # More UTM zone conversion functions
glob = "0.3"
parse_duration = "2.1"
num = "0.4"
num-complex = "0.4"
enterpolation = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[target.'cfg(target_os = "macos")'.dependencies]
netcdf = { version = "0.12", features = ["ndarray"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
netcdf = { version = "0.12", features = ["ndarray", "static"] }
[dev-dependencies]
tempfile = "3.5.0"
temp-env = "0.3.6"
serial_test = "3.2.0"
approx = "0.5.0"
test_retry = "0.1.0"
[features]
default = ["cli", "python"]
cli = []
python = ["pyo3", "numpy"]