-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.09 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
[package]
name = "vlsvrs"
version = "0.9.9"
edition = "2024"
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/kstppd/vlsvrs"
description = "VLSV reader with C and Python bindings"
keywords = ["vlasiator","vlsv","plasma","vdf","hpc"]
categories = ["simulation","parsing","data-structures"]
exclude = [
"target/*",
]
[build-dependencies]
cmake = "0.1"
[dependencies]
bytemuck = { version = "1.25", features = ["derive"] }
libc = "0.2.180"
memmap2 = "0.9.9"
ndarray = "0.16.1"
num-traits = "0.2.19"
numpy = { version = "0.25.0", optional = true }
once_cell = "1.21.3"
pyo3 = {version="0.25.1",features =["extension-module"],optional=true}
regex = "1.12.3"
serde = { version = "1.0", features = ["derive"] }
serde-xml-rs = "0.6"
[lib]
name = "vlsvrs"
path = "rust/src/vlsv_reader.rs"
crate-type = ["staticlib", "cdylib","rlib"]
[features]
default = []
with_bindings = ["dep:pyo3", "dep:numpy"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
debug = 0
debug-assertions = false
overflow-checks = false
incremental = false
rpath = true