-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 901 Bytes
/
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
workspace = { members = ["historical_data"] }
[package]
name = "mongo-to-clickhouse"
version = "0.1.0"
edition = "2021"
[dependencies]
clickhouse-rs = "1.1.0-alpha.1"
config = "0.14.0"
mongodb = { version = "2.8.0", features = ["tokio-runtime"] }
r2d2 = "0.8.10"
tokio = { version = "1.36.0", features = ["full"] }
serde = { version = "1.0.197", features = ["derive"] }
tokio-postgres = "0.7.10"
sha2 = "0.10.8"
hex = "0.4.3"
r2d2_postgres = "0.18.1"
futures = "0.3.30"
log = "0.4.21"
env_logger = "0.11.3"
anyhow = "1.0.81"
bb8 = "0.8.3"
bb8-postgres = "0.8.1"
serde_json = "1.0.114"
serde_yaml = "0.9.33"
rayon = "1.9.0"
sqlx = "0.8.0"
chrono = "0.4.35"
regex = "1.10.4"
lazy_static = "1.4.0"
rocksdb = "0.22.0"
time = "0.3.36"
tracing = "0.1.40"
backoff = "0.4.0"
[[bin]]
name = "mongo-to-clickhouse"
path = "src/main.rs"
[[bin]]
name = "historical_data"
path = "historical_data/src/main.rs"