rustlog/Cargo.toml

61 lines
1.8 KiB
TOML
Raw Permalink Normal View History

2022-08-13 03:38:02 -04:00
[package]
name = "rustlog"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-06-03 05:12:34 -04:00
aide = { version = "0.11.0", features = ["axum", "redoc"] }
2023-08-30 15:37:48 -04:00
anyhow = "1.0.75"
axum = { version = "0.6.20", features = ["headers"] }
chrono = { version = "0.4.27", features = ["serde"] }
clap = { version = "4.4.1", features = ["derive"] }
2023-06-19 14:27:37 -04:00
clickhouse = { version = "0.11.5", default-features = false, features = [
2023-05-27 03:29:10 -04:00
"lz4",
] }
2023-08-30 15:37:48 -04:00
dashmap = { version = "5.5.3", features = ["serde"] }
flate2 = "1.0.27"
2023-05-29 14:40:19 -04:00
futures = "0.3.28"
2023-06-03 05:12:34 -04:00
indexmap = "1.9.3"
2023-05-29 14:49:15 -04:00
lazy_static = "1.4.0"
2023-08-30 15:37:48 -04:00
mimalloc = { version = "0.1.38", default-features = false }
mime_guess = "2.0.4"
prometheus = "0.13.3"
rand = "0.8.5"
2023-05-26 15:28:21 -04:00
rayon = "1.7.0"
2023-08-30 15:37:48 -04:00
reqwest = { version = "0.11.20", features = [
2023-05-27 03:29:10 -04:00
"rustls-tls",
], default-features = false }
2023-08-30 15:37:48 -04:00
rust-embed = { version = "8.0.0", features = ["interpolate-folder-path"] }
schemars = "0.8.13"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.105", features = ["preserve_order"] }
serde_repr = "0.1.16"
2023-06-19 14:27:37 -04:00
strum = { version = "0.25.0", features = ["derive"] }
2023-08-30 15:37:48 -04:00
thiserror = "1.0.47"
tokio = { version = "1.32.0", features = ["sync", "signal", "rt-multi-thread"] }
2023-06-07 01:51:51 -04:00
tokio-stream = "0.1.14"
2023-08-30 15:37:48 -04:00
tower-http = { version = "0.4.3", features = [
"trace",
"cors",
"normalize-path",
2023-06-23 02:02:13 -04:00
"compression-full",
] }
2023-06-07 14:17:47 -04:00
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2023-08-30 15:37:48 -04:00
twitch-irc = { version = "5.0.1", default-features = false, features = [
2023-05-27 03:29:10 -04:00
"metrics-collection",
"transport-tcp-rustls-webpki-roots",
] }
2022-08-13 03:38:02 -04:00
twitch_api2 = { version = "0.6.1", features = [
"reqwest",
"helix",
"twitch_oauth2",
] }
2023-06-08 14:26:06 -04:00
twitch = { git = "https://github.com/jprochazk/twitch-rs", features = ["simd"] }
2023-08-30 15:37:48 -04:00
axum-prometheus = "0.4.0"
2023-06-23 01:58:34 -04:00
metrics-prometheus = "0.4.1"
2023-08-30 15:37:48 -04:00
async-trait = "0.1.73"
2022-08-13 03:38:02 -04:00
[dev-dependencies]
2023-08-30 15:37:48 -04:00
pretty_assertions = "1.4.0"