-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (49 loc) · 1.27 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 = "oauth-api"
version = "0.1.0"
edition = "2021"
[profile.release]
lto = "thin"
[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.80"
chrono = { version = "0.4.33", features = ["serde"] }
dotenvy = "0.15.7"
envconfig = "0.10.0"
futures = "0.3.30"
handlebars = "5.1.1"
integrationos-domain = { version = "8.0.0", features = ["dummy"] }
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.1"
mongodb = "2.8.0"
reqwest = { version = "0.12.3", features = [
"json",
"rustls-tls",
] }
reqwest-middleware = { version = "0.3.3", features = [
"json",
"rustls-tls",
] }
reqwest-retry = "0.6.1"
reqwest-tracing = "0.5.3"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
[lib]
path = "src/lib.rs"
[[bin]]
name = "oauth-api"
path = "src/main.rs"
[dev-dependencies]
fake = { version = "=2.9.2", features = ["dummy"] }
mark-flaky-tests = { version = "1.0.2", features = ["tokio"] }
once_cell = "1.19.0"
rand = "0.8.5"
uuid = { version = "1.7.0", features = ["v4"] }