-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (43 loc) · 1.37 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
[package]
name = "rex"
version = "0.1.0"
authors = ["Benjamin Pannell <[email protected]>"]
edition = "2018"
[features]
default = []
table_storage = []
[dependencies]
actix = "0.13"
actix-http = "3.8"
actix-rt = "2.10"
actix-service = "2.0.2"
actix-web = "4.8"
async-trait = "0.1.81"
azure_core = "0.20"
azure_data_tables = "0.20"
azure_storage = "0.20"
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.11"
futures = "0.3"
http = "0.2"
lazy_static = "1.5"
log = "0.4"
md5 = "0.7"
openidconnect = { version = "3.5", default_features = false, features = ["curl"] }
opentelemetry = { version = "0.23" }
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.16", features = ["tls-roots"] }
percent-encoding = "2.3"
rand = "0.8"
reqwest = { version = "0.11" }
sentry = { version = "0.34", features = ["log"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.39", features = ["full"] }
tonic = { version = "0.11", features = ["tls-roots"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-attributes = { git="https://github.com/SierraSoftworks/tracing.git" }
tracing-futures = { version = "0.2.5", features = ["futures-03"] }
tracing-opentelemetry = "0.24"
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }
uuid = { version = "1.10", features = ["serde", "v4"] }