-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 852 Bytes
/
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
[package]
name = "image-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
actix-multipart = "0.4.0"
actix-form-data = "0.6.2"
sqlx = { version = "0.6.2", features = [ "runtime-tokio-native-tls", "sqlite", "uuid", "offline"] }
tracing = "0.1.19"
opentelemetry = { version = "0.17", features = ["rt-tokio-current-thread"] }
tracing-opentelemetry = { version = "0.17" }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3"
tracing-actix-web = "0.6.0"
tokio = { version = "1.20.1", features = ["full"]}
anyhow = "1.0.60"
serde = "1.0"
serde_json = "1.0"
uuid = { version="1.1.2", features = ["v4", "serde"] }
thiserror = "1.0.35"
futures-util = "0.3.24"
image = "0.24.3"