This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (50 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
50
51
52
53
54
55
[package]
name = "presence"
version = "0.1.4"
edition = "2021"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
axum = { version = "0.6", features = ["ws"] }
chrono = "0.4"
config = { version = "0.13", default-features = false, features = ["toml"] }
futures-util = "0.3"
http = "0.2"
humantime-serde = "1.0"
k8s-openapi = { version = "0.18", features = ["v1_23"] }
kube = "0.83"
once_cell = "1.18"
prometheus = "0.13"
radix_trie = "0.2"
reqwest = { version = "0.11", features = ["json"] }
sentry = { version = "0.31", features = ["reqwest"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls" , "postgres", "offline", "uuid", "time", "offline", "ipnetwork"] }
svc-agent = { version = "0.21", features = ["sqlx"] }
svc-authn = { version = "0.8", features = ["jose", "sqlx"] }
svc-authz = "0.12"
svc-error = { version = "0.6", features = ["sentry-extension", "sqlx", "serialize-status-code"] }
svc-events = "0.10"
svc-nats-client = { version = "0.7" }
svc-utils = { version = "0.8", features = ["log-middleware", "authn-extractor", "metrics-middleware", "cors-middleware"] }
thiserror = "1.0"
tokio = { version = "1.29", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
uuid = { version = "1.4", features = ["v4", "serde"] }
[dependencies.dotenv]
version = "0.15"
optional = true
[dependencies.local-ip-address]
version = "0.5"
optional = true
[features]
local_ip = ["local-ip-address"]
[dev-dependencies]
testcontainers = "0.14"