Files
qrust/Cargo.toml
Nikolaos Karaolidis 90b7f10a77 Update and fix bugs
It's good to be back

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-05-10 17:49:16 +01:00

89 lines
1.6 KiB
TOML

[package]
name = "qrust"
version = "0.1.0"
edition = "2021"
[lib]
name = "qrust"
path = "src/lib/qrust/mod.rs"
[[bin]]
name = "qrust"
path = "src/bin/qrust/mod.rs"
[[bin]]
name = "trainer"
path = "src/bin/trainer/mod.rs"
[profile.release]
panic = 'abort'
strip = true
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.5"
dotenv = "0.15.0"
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
] }
tokio-tungstenite = { version = "0.21.0", features = [
"tokio-native-tls",
"native-tls",
] }
log = "0.4.21"
log4rs = "1.3.0"
serde = "1.0.201"
serde_json = "1.0.117"
serde_repr = "0.1.19"
serde_with = "3.8.1"
serde-aux = "4.5.0"
futures-util = "0.3.30"
reqwest = { version = "0.12.4", features = [
"json",
] }
http = "1.1.0"
governor = "0.6.3"
clickhouse = { version = "0.11.6", features = [
"watch",
"time",
"uuid",
] }
uuid = { version = "1.8.0", features = [
"serde",
"v4",
] }
time = { version = "0.3.36", features = [
"serde",
"serde-well-known",
"serde-human-readable",
"formatting",
"macros",
"local-offset",
] }
backoff = { version = "0.4.0", features = [
"tokio",
] }
regex = "1.10.4"
async-trait = "0.1.80"
itertools = "0.12.1"
lazy_static = "1.4.0"
nonempty = { version = "0.10.0", features = [
"serialize",
] }
rand = "0.8.5"
rayon = "1.10.0"
burn = { version = "0.13.2", features = [
"wgpu",
"cuda",
"tui",
"metrics",
"train",
] }
[dev-dependencies]
serde_test = "1.0.176"