-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (49 loc) · 1.22 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
[package]
name = "audius_network_monitor"
authors = ["Johannes Naylor <[email protected]>"]
version = "0.1.0"
edition = "2021"
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
name = "audius_network_monitor"
path = "src/main.rs"
[dependencies]
tracing = {version = "0.1.37", features = ["log"]}
tracing-bunyan-formatter = "0.3.6"
tracing-log = "0.1.3"
tracing-subscriber = {version = "0.3.16", features = [
"registry",
"env-filter",
]}
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"]}
secrecy = {version = "0.8.0", features = ["serde"]}
serde-aux = "4.1.2"
serde = {version = "1.0.152", features = ["derive"]}
config = "0.13.3"
futures = "0.3.25"
thiserror = "1.0.38"
reqwest = {version = "0.11.14", features = ["json"]}
serde_json = "1.0.91"
tokio-retry = "0.3.0"
once_cell = "1.17.0"
prometheus = {version = "0.13.3", features = ["push"]}
lazy_static = "1.4.0"
num-traits = "0.2.15"
color-eyre = "0.6.2"
[dependencies.sqlx]
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
"offline",
"bigdecimal",
]
version = "0.6.2"