Files
qrust/Cargo.toml
Nikolaos Karaolidis f3f9c6336b Remove rust-bert
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-03-13 12:09:50 +00:00

71 lines
1.3 KiB
TOML

[package]
name = "qrust"
version = "0.1.0"
edition = "2021"
[lib]
name = "qrust"
path = "src/lib/mod.rs"
[[bin]]
name = "qrust"
path = "src/main.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.4"
dotenv = "0.15.0"
tokio = { version = "1.32.0", features = [
"macros",
"rt-multi-thread",
] }
tokio-tungstenite = { version = "0.21.0", features = [
"tokio-native-tls",
"native-tls",
] }
log = "0.4.20"
log4rs = "1.2.0"
serde = "1.0.188"
serde_json = "1.0.105"
serde_repr = "0.1.18"
serde_with = "3.6.1"
serde-aux = "4.4.0"
futures-util = "0.3.28"
reqwest = { version = "0.11.20", features = [
"json",
"serde_json",
] }
http = "1.0.0"
governor = "0.6.0"
clickhouse = { version = "0.11.6", features = [
"watch",
"time",
"uuid",
] }
uuid = { version = "1.6.1", features = [
"serde",
"v4",
] }
time = { version = "0.3.31", features = [
"serde",
"serde-well-known",
"serde-human-readable",
"formatting",
"macros",
"local-offset",
] }
backoff = { version = "0.4.0", features = [
"tokio",
] }
regex = "1.10.3"
async-trait = "0.1.77"
itertools = "0.12.1"
lazy_static = "1.4.0"