Files
ruvnet--RuView/vendor/sublinear-time-solver/crates/temporal-compare/Cargo.toml
T
rUv 407b46b206 feat: vendor midstream and sublinear-time-solver libraries (#109)
Add ruvnet/midstream (AIMDS real-time inference) and
ruvnet/sublinear-time-solver (sublinear optimization algorithms)
as vendored dependencies under vendor/.
2026-03-02 23:34:05 -05:00

35 lines
974 B
TOML

[package]
name = "temporal-compare"
version = "0.5.0"
edition = "2021"
authors = ["ruvnet"]
description = "High-performance framework for benchmarking temporal prediction algorithms inspired by Time-R1"
documentation = "https://docs.rs/temporal-compare"
homepage = "https://github.com/ruvnet/sublinear-time-solver"
repository = "https://github.com/ruvnet/sublinear-time-solver"
readme = "README.md"
license = "MIT"
keywords = ["temporal", "prediction", "time-series", "machine-learning", "benchmark"]
categories = ["algorithms", "science", "mathematics"]
exclude = ["target/*", ".git/*", "*.log", "RESULTS.md"]
[dependencies]
rand = "0.8"
rand_distr = "0.4"
ndarray = "0.15"
ndarray-rand = "0.14"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rayon = "1.10"
[features]
default = []
ruv-fann = ["ruv-fann-dep"]
simd = []
[dependencies.ruv-fann-dep]
package = "ruv-fann"
version = "0.1.6"
optional = true