-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (28 loc) · 819 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
[package]
name = "crdb-changefeed-publisher"
version = "0.1.0"
authors = ["Joe Burnard <github.com/ducc>"]
edition = "2018"
[dependencies]
futures-executor = "0.3.5"
futures-util = "0.3.5"
lapin = "1.2.1"
log = "0.4.11"
env_logger = "0.7.1"
tokio-amqp = "0.1.3"
tokio = { version = "0.2", features = ["macros", "tcp", "dns", "io-util", "time"] }
tracing = "0.1.17"
tracing-subscriber = "0.2.8"
tracing-futures = "0.2.4"
tracing-log = "0.1.1"
prometheus = "0.9.0"
lazy_static = "1.4.0"
prometheus_exporter = "0.5.0"
warp = "0.2"
sqlx = { version = "0.3.5", default_features = false, features = ["runtime-tokio", "postgres", "uuid", "chrono", "time", "bigdecimal", "json", "macros"] }
serde_json = "1.0"
serde = "1.0"
futures = "0.3.5"
async-trait = "0.1.36"
clap = { version = "2.33", features = ["yaml"] }
regex = "1"