mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
20 lines
469 B
TOML
20 lines
469 B
TOML
[package]
|
|
name = "chcache"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
blake3 = "1.5.4"
|
|
clickhouse = { version = "0.13.1", features = ["rustls-tls"] }
|
|
env_logger = { version = "0.11.5", default-features = false }
|
|
log = "0.4.22"
|
|
serde = { version = "1.0.210", features = ["serde_derive"] }
|
|
serde_bytes = "0.11.15"
|
|
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
|
|
toml = "0.8.19"
|
|
xdg = "2.5.2"
|
|
|
|
[[bin]]
|
|
name = "chcache"
|
|
path = "src/main.rs" # FIXME
|