- Migrate to ClickHouse - Simplify serde renaming - Simplify backfill logic - Compartmentalize database columns Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
49 lines
950 B
TOML
49 lines
950 B
TOML
[package]
|
|
name = "qrust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[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"
|
|
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 = "1.6.1"
|
|
time = { version = "0.3.31", features = [
|
|
"serde",
|
|
"formatting",
|
|
"macros",
|
|
"serde-well-known",
|
|
] }
|