forked from sunpy/streamtracer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 685 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 685 Bytes
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
[package]
name = "streamtracer"
# rc versions in rust landhave the format x.y.z-rc.q
version = "2.5.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "streamtracer"
crate-type = ["cdylib"]
[dependencies]
pyo3 = {version = "0.25", features = ["extension-module"]}
numpy = "0.25" # I think this should follow the pyo3 version, but it can be slow to release
num-traits = "0.2"
num-derive = "0.4"
rayon = "1.11"
ndarray = {version = "0.16", features = ["rayon"]}
[dev-dependencies]
float_eq = "1.0.0"
[lints.clippy]
needless_return = "allow"
implicit_return = "warn"
[profile.release]
codegen-units = 1