-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (45 loc) · 1.7 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
[package]
name = "uptime-checker"
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.4.6", features = ["derive"] }
chrono = { version = "0.4.31", default-features = false, features = ["std", "serde"] }
httpmock = "0.7.0-rc.1"
reqwest = { version = "0.12.2", features = ["hickory-dns"] }
rust_arroyo = { version = "*", git = "https://github.com/getsentry/arroyo", rev = "0b84afc07131d8b8d48abcb7c8de8cfa2a98e526" }
tokio = { version = "1.28.0", features = ["macros", "sync", "tracing", "signal", "rt-multi-thread", "test-util"] }
uuid = { version = "1.8.0", features = ["serde", "v4", "v5"] }
serde = { version = "1.0.159", features = ["derive", "rc"] }
serde_json = "1.0.93"
figment = { version = "0.10", features = ["yaml", "env", "test"] }
similar-asserts = "1.4.2"
sentry = { version = "0.34.0", features = ["tracing"] }
thiserror = "1.0.61"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
tracing-test = "0.2.5"
console = "0.15.8"
sentry-kafka-schemas = "0.1.126"
serde_with = { version = "3.8.1", features = ["chrono"] }
rmp-serde = "1.3.0"
serde_repr = "0.1.19"
tokio-util = "0.7.11"
metrics-exporter-statsd = "0.8.0"
metrics = "0.23.0"
futures = "0.3.30"
tokio-stream = "0.1.15"
redis = { version = "0.26.0", features = ["tokio-comp"] }
ipnet = "2.10.0"
hickory-resolver = "0.24.1"
[patch.crates-io]
rdkafka = { git = "https://github.com/fede1024/rust-rdkafka" }
reqwest = { git = "https://github.com/getsentry/reqwest", branch = "restricted-connector" }
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = "debuginfo"