-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (63 loc) · 1.78 KB
/
Cargo.toml
File metadata and controls
74 lines (63 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[workspace]
members = ["neopdf", "neopdf_capi", "neopdf_cli", "neopdf_gui", "neopdf_pyapi", "neopdf_tmdlib", "neopdf_wolfram"]
default-members = ["neopdf", "neopdf_capi", "neopdf_cli", "neopdf_pyapi"]
resolver = "2"
[workspace.package]
categories = ["science"]
edition = "2021"
keywords = ["high-energy-physics", "physics"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Radonirinaunimi/neopdf"
rust-version = "1.82.0"
version = "0.3.0-alpha4"
[workspace.dependencies]
# Core dependencies
bincode = "1.3"
flate2 = "1.1.2"
git-version = "0.3.9"
indicatif = "0.17.8"
itertools = "0.13"
lz4_flex = "0.11"
ndarray = { version = "0.16.1", features = ["serde"] }
ninterp = "0.7.3"
rayon = "1.5"
regex = "1.11.1"
reqwest = { version = "0.12.22", features = ["blocking", "gzip", "rustls-tls", "stream"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tar = "0.4.44"
tempfile = "3.10.1"
thiserror = "1.0.69"
# CLI dependencies
clap = { version = "4.5", features = ["derive"] }
terminal_size = "0.3.0"
# Python bindings
numpy = "0.27"
pyo3 = { version = "0.27", features = ["extension-module"] }
# Build dependencies
cbindgen = "0.26.0"
# Dev dependencies for testing
assert_cmd = "2.0.17"
assert_fs = "1.1.3"
criterion = "0.6"
predicates = "3.1.3"
# Internal crates
neopdf = { path = "./neopdf", version = "0.3.0-alpha4" }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
[workspace.lints.rust]
missing-docs = "warn"
unsafe-op-in-unsafe-fn = "deny"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.test-opt]
inherits = "test"
opt-level = 1
debug = false