-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (32 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "streamhouse"
version = "0.0.1"
edition = "2021"
authors = ["David Roundy <[email protected]>"]
description = "A strongly typed client for clickhouse"
license = "MIT OR Apache-2.0"
repository = "https://github.com/droundy/streamhouse"
readme = "README.md"
categories = ["caching", "memory-management", "concurrency"]
keywords = ["clickhouse", "database", "driver", "hyper", "tokio"]
[dependencies]
hyper = {version = "0.14.26", features = ["client", "http2", "http1", "tcp", "stream"]}
lz4_flex = { git = "https://github.com/droundy/lz4_flex", branch = "async-decompress" }
thiserror = "1.0.40"
streamhouse-derive = { version = "0.0.1", path = "streamhouse-derive" }
futures-util = "0.3.28"
[dev-dependencies]
function_name = "0.3.0"
tokio = { version = "1.28.2", features = ["rt", "macros", "rt-multi-thread"]}
clickhouse = { version = "0.11.3", features = ["test-util", "lz4"] }
clickhouse-rs = { git = "https://github.com/droundy/clickhouse-rs.git", branch = "async-await" }
serde = { version = "1.0.147", features = ["rc", "derive"] }
url = { version = "2.2.2", features = ["serde"] }
rand = "0.8.5"
[workspace]
members = [
"streamhouse-derive",
]
[[bench]]
name = "bench"
harness = false