Files
unchecked-io/Cargo.toml

57 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2025-11-17 14:23:03 -07:00
[package]
name = "unchecked-io"
2025-11-23 13:46:17 -07:00
version = "0.1.7"
authors = ["Billthemaker"]
license = "Apache-2.0"
2025-11-18 12:40:08 -07:00
edition = "2024"
2025-11-17 14:23:03 -07:00
[lib]
2025-11-17 14:23:03 -07:00
name = "unchecked_io"
crate-type = ["cdylib", "rlib"]
[features]
default = []
gpu = [
"tokenizers",
"cudarc",
"pyo3-dlpack",
"cudarc/cuda-12050",
"dep:cuda-driver-sys"
]
profiling = ["dep:tracing", "dep:tracing-subscriber", "dep:tracing-tracy"]
2025-11-17 14:23:03 -07:00
[dependencies]
2025-11-23 13:27:22 -07:00
pyo3 = { version = "=0.27.0", features = ["extension-module", "chrono-tz", "chrono"] }
2025-11-17 14:23:03 -07:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
arrow = { version = "57.0.0", features = ["prettyprint"] }
2025-11-17 22:58:09 -07:00
tokio = { version = "1.37", features = ["full"] }
tokio-postgres = "0.7"
2025-11-18 12:40:08 -07:00
deadpool-postgres = "0.14"
2025-11-17 22:58:09 -07:00
anyhow = "1.0"
futures-util = "0.3"
bytes = "1.6"
byteorder = "1.5"
2025-11-17 14:23:03 -07:00
chrono = "0.4"
2025-11-23 13:46:17 -07:00
chrono-tz = "=0.10.4"
uuid = { version = "1.8", features = ["serde", "v4"] }
2025-11-18 09:59:49 -07:00
pyo3-arrow = "0.15.0"
2025-11-18 12:40:08 -07:00
num_cpus = "1.16"
async-channel = "2.5.0"
rayon = "1.10"
# Optional dependencies enabled by features
# UPGRADED: 0.20 supports modern Llama tokenizer exports
tokenizers = { version = "0.20", optional = true }
cudarc = { version = "0.11", features = ["driver"], optional = true }
pyo3-dlpack = { version = "0.1.0", optional = true }
cuda-driver-sys = { version = "0.3.0", optional = true }
2025-11-18 12:40:08 -07:00
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"], optional = true}
tracing-tracy = { version = "=0.11.2", optional = true }
tracing = {version ="0.1.41", optional = true }
2025-11-18 20:51:03 -07:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
mimalloc = { version = "0.1.39" }