-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.04 KB
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
[package]
name = "bender"
version = "0.1.0"
authors = ["Benjamin Pannell <benjamin@pannell.dev>"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13"
actix-rt = "2.11"
actix-service = "2.0.3"
actix-web = "4.13"
async-trait = "0.1.89"
azure_identity = "0.33.0"
azure_storage_blob = "0.10"
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.11"
futures = "0.3"
http = "1.4"
log = "0.4"
mime = "0.3"
rand = "0.10"
reqwest = { version = "0.13" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.52", features = ["sync"] }
tonic = { version = "0.12", features = ["tls-roots"] }
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git", features = ["medama"] }
uuid = { version = "0.7", features = ["serde", "v4", "u128" ]}
openssl-sys = { version = "0.9.114", features = ["vendored"], optional = true }
tracing = "0.1.44"
[features]
default = []
openssl-vendored = ["dep:openssl-sys"]