-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (43 loc) · 1.26 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
[package]
name = "centrifugo-change-stream"
version = "4.0.14"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap-verbosity-flag = "2.0"
futures-util = "0.3"
mongodb = "2.7"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
signal-hook = { version = "0.3", default-features = false }
signal-hook-tokio = { version = "0.3", features = [ "futures-v0_3" ] }
tokio-util = "0.7"
tracing = "0.1"
url = "2.4"
[dependencies.axum]
version = "0.7"
default-features = false
features = [ "http1", "json", "tokio" ]
[dependencies.clap]
version = "4.4"
default-features = false
features = [ "std", "help", "usage", "error-context", "derive", "env" ]
[dependencies.reqwest]
version = "0.12"
default-features = false
features = [ "json" ]
[dependencies.tokio]
version = "1.33"
features = [ "macros", "rt-multi-thread", "sync" ]
[dependencies.tracing-log]
version = "0.2"
default-features = false
features = [ "std", "log-tracer" ]
[dependencies.tracing-subscriber]
version = "0.3"
default-features = false
features = [ "ansi", "fmt", "parking_lot", "smallvec", "std" ]
[dev-dependencies]
mockito = "1.2"
tower = { version = "0.5", default-features = false, features = [ "util" ] }