-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (30 loc) · 953 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
[package]
name = "merlin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-channel = "0.3"
url = "2.0.0"
log = "0.4"
tokio-postgres = "0.7.0"
chrono = "0.4"
tokio = { version = "1", features = ["full"] }
warp = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
tokio-stream = { version = "0.1.1", features = ["net"] }
reqwest = { version = "0.11", features = ["json"] }
serde = {version = "1.0.133", features = ["derive"] }
serde_json = "1.0"
futures = "0.3.19"
lapin = "1.9.0"
tokio-amqp = "1.0.1"
ansi_term = "0.12"
anyhow = "1.0.56"
[dependencies.uuid]
version = "1.0.0-alpha.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]