mirror of
https://github.com/awfufu/traudit
synced 2026-03-01 05:29:44 +08:00
26 lines
622 B
TOML
26 lines
622 B
TOML
[package]
|
|
name = "traudit"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["awfufu"]
|
|
description = "A reverse proxy with auditing capabilities."
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "mysql", "postgres", "sqlite"] }
|
|
clickhouse = { version = "0.13", features = ["test-util"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
socket2 = "0.5"
|
|
libc = "0.2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
anyhow = "1.0"
|
|
thiserror = "2.0"
|
|
bytes = "1.1"
|
|
url = "2.5"
|
|
async-trait = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|