Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,184 changes: 582 additions & 602 deletions Cargo.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ log = "0.4"
env_logger = "0.11"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.0", features = ["full"] }
tokio = { version = "1.52", features = ["full"] }

# Numerical computing
ndarray = { version = "0.17", features = ["serde"] }
Expand All @@ -73,26 +73,26 @@ argmin = { version = "0.11", default-features = false }
argmin-math = { version = "0.5", default-features = false, features = ["vec"] }

# SIMD (CPU - Priority P0)
wide = "1.1"
wide = "1.3"

# Parallelism (CPU - Priority P0)
rayon = "1.11"
rayon = "1.12"

# Testing
approx = "0.5"
proptest = "1.10"
proptest = "1.11"
criterion = { version = "0.8", features = ["html_reports"] }

# MCMC / sampling (Phase 3, optional)
rand = "0.9"
rand_distr = "0.5"
json-patch = "4.1.0"
sha2 = "0.10"
rand = "0.10"
rand_distr = "0.6"
json-patch = "4.2.0"
sha2 = "0.11"

# Arrow / Parquet
arrow = { version = "57.3", default-features = false, features = ["ffi", "ipc"] }
arrow = { version = "58.1", default-features = false, features = ["ffi", "ipc"] }
csv = "1.3"
parquet = { version = "57.3", default-features = false, features = ["arrow", "zstd", "snap"] }
parquet = { version = "58.1", default-features = false, features = ["arrow", "zstd", "snap"] }

# Python bindings
pyo3 = { version = "0.28", features = ["extension-module"] }
Expand All @@ -109,11 +109,11 @@ tower-http = { version = "0.6", features = ["cors", "trace"] }
# autodiff dependencies will be added later

# Neural density estimation (Phase 3 - Optional)
ort = { version = "2.0.0-rc.11", default-features = false, features = ["std"] }
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std"] }

# GPU backends (Phase 2C - Optional)
cudarc = { version = "0.19", default-features = false, features = ["driver", "nvrtc", "cublas", "std", "dynamic-loading", "cuda-12040"] }
metal = "0.30"
metal = "0.33"
objc = "0.2"
block = "0.1"

Expand Down
6 changes: 3 additions & 3 deletions crates/ns-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ serde_json.workspace = true
serde_yaml_ng.workspace = true
statrs.workspace = true
rand.workspace = true
sha2 = "0.10"
sha2 = "0.11"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
flate2 = "1.1"
tar = "0.4"
ureq = { version = "2.12", default-features = true }
zip = { version = "2.4", default-features = false, features = ["deflate"] }
ureq = { version = "3.2", default-features = true }
zip = { version = "8.6", default-features = false, features = ["deflate"] }

[features]
default = ["native-render"]
Expand Down
2 changes: 1 addition & 1 deletion crates/ns-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ neural-tensorrt = ["ns-compute/flow-ort-tensorrt"]
metal = ["ns-translate/metal", "ns-compute/metal"]

[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
getrandom = { version = "0.4", features = ["wasm_js"] }

[dev-dependencies]
approx.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/ns-root/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ description = "Native ROOT file reader for NextStat (TH1D/TH1F histograms, TTree
thiserror.workspace = true
log.workspace = true
flate2 = "1.1"
lz4_flex = "0.11"
lz4_flex = "0.13"
ns-zstd = { path = "../ns-zstd" }
lzma-rs = "0.3"
memmap2 = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion crates/ns-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rayon.workspace = true
anyhow.workspace = true
statrs.workspace = true
nalgebra.workspace = true
sha2 = "0.10"
sha2 = "0.11"
base64 = "0.22"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/ns-translate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ arrow = { workspace = true, optional = true }
# Note: avoid enabling Parquet's `zstd` feature by default.
# When enabled, this workspace patches `zstd` to a pure-Rust shim backed by `ns-zstd`,
# so it is compatible with wasm32-unknown-unknown as well.
parquet = { version = "57.3", default-features = false, features = ["arrow", "snap"], optional = true }
parquet = { version = "58.1", default-features = false, features = ["arrow", "snap"], optional = true }
bytes = { version = "1", optional = true }
memmap2 = { version = "0.9", optional = true }
ns-unbinned = { workspace = true, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/ns-unbinned/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ ort = { workspace = true, optional = true }

# Arrow / Parquet event I/O (optional)
arrow = { workspace = true, optional = true }
parquet = { version = "57.3", default-features = false, features = ["arrow", "snap"], optional = true }
parquet = { version = "58.1", default-features = false, features = ["arrow", "snap"], optional = true }
bytes = { version = "1", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
# `rand` pulls `getrandom`; for wasm32-unknown-unknown this backend must be explicitly enabled.
getrandom = { version = "0.3", features = ["wasm_js"] }
getrandom = { version = "0.4", features = ["wasm_js"] }

[dev-dependencies]
approx.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/ns-viz-render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ ab_glyph = "0.2"
base64 = "0.22"

[dependencies.resvg]
version = "0.43"
version = "0.47"
optional = true

[dependencies.usvg]
version = "0.43"
version = "0.47"
optional = true

[dependencies.tiny-skia]
version = "0.11"
version = "0.12"
optional = true

[dependencies.svg2pdf]
version = "0.12"
version = "0.13"
optional = true

[features]
Expand Down
Loading