forked from suharev7/clickhouse-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 1.06 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
41
42
43
44
45
46
[package]
name = "clickhouse-rs"
version = "0.1.21"
authors = ["Mikhail Sukharev <[email protected]>"]
license = "MIT"
homepage = "https://github.com/suharev7/clickhouse-rs"
repository = "https://github.com/suharev7/clickhouse-rs"
description = "Tokio based asynchronous Yandex ClickHouse client library."
documentation = "https://docs.rs/clickhouse-rs"
readme = "README.md"
keywords = ["tokio", "database", "clickhouse"]
categories = ["database"]
edition = "2018"
exclude = ["tests/*", "examples/*"]
[features]
default = []
tls = ["tokio-tls", "native-tls"]
[dependencies]
log = "0.4.8"
futures = "0.1.29"
tokio = "0.1.22"
tokio-timer = "0.2.11"
tokio-tls = { version = "0.2.1", optional = true }
native-tls = { version = "0.2.3", optional = true }
hostname = "^0.3"
chrono = "0.4"
chrono-tz = "0.5"
lz4 = "1.23.1"
clickhouse-rs-cityhash-sys = { path = "clickhouse-rs-cityhash-sys", version = "0.1.2" }
byteorder = "1.3.1"
thiserror = "1.0.19"
url="^2"
lazy_static = "1.4.0"
crossbeam = "0.7"
uuid = "0.8.1"
combine = "4.0.1"
[dev-dependencies]
env_logger = "^0.7"
rand = "^0.7"