-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (44 loc) · 1.15 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
[package]
name = "cch23_challenge"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[dependencies]
askama = { version = "0.12.1" }
axum = { version = "0.7.3", features = ["macros", "multipart", "ws"] }
axum-extra = { version = "0.9.1", features = ["typed-header"] }
base64 = "0.21.5"
bytes = "1.5.0"
chrono = "0.4.31"
dms-coordinates = "1.1.0"
dotenv = "0.15.0"
fancy-regex = "0.13.0"
futures = "0.3.29"
image = "0.24.7"
itertools = "0.12.0"
reqwest = { version = "0.11.22", features = ["json"] }
rust-crypto = "0.2.36"
s2 = "0.0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.7.3", features = [
"postgres",
"runtime-tokio-rustls",
"macros",
] }
tar = "0.4.40"
tempfile = "3.8.1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5.0", features = ["trace", "fs"] }
tracing = "0.1.40"
ulid = { version = "1.1.0", features = ["uuid"] }
uuid = "1.6.1"
walkdir = "2.4.0"
clap = { version = "4.4.7", features = ["env", "derive"] }
tracing-subscriber = "0.3.18"
josekit = "0.8.4"
[dev-dependencies]
tower = { version = "0.4", features = ["util"] }
http-body-util = "0.1.0"
mime = "0.3.17"