-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
61 lines (47 loc) · 1.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "db-interfaces"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
# proc macros
db-interfaces-macros = { path = "../macros" }
# serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
erased-serde = "0.3.31"
# clickhouse
clickhouse = { git = "https://github.com/SorellaLabs/clickhouse.rs", branch = "master", features = ["time"] }
# error handling
eyre = "0.6.5"
thiserror = "1.0.44"
# async
tokio = { version = "1.28.2", features = ["full"] }
futures = "0.3.28"
# http/s
hyper-tls = "0.5.0"
hyper = { version = "0.14", features = ["full"] }
reqwest = { version = "0.12.2", features = ["json"] }
# alloy types
alloy-primitives = { version = "0.7.0", optional = true }
# misc
chrono = "0.4.26"
dotenv = "0.15.0"
primitive-types = "0.12.2"
strum = "0.25"
strum_macros = "0.25"
rand = "0.8.5"
dyn-clone = "1.0.16"
[dev-dependencies]
hex-literal = "0.4.1"
hex = "0.4.3"
shellexpand = "3.0.0"
paste = "1.0.14"
[features]
default = []
tls = ["clickhouse/tls"]
alloy-types = ["dep:alloy-primitives"]
test-utils = ["db-interfaces-macros/test-utils"]