-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (37 loc) · 1.02 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
[package]
name = "sirene"
version = "3.0.0"
authors = ["Julien Blatecky <julien.blatecky@creatiwity.net>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
custom_error = "1.9"
diesel = { version = "2.1", features = [
"postgres",
"chrono",
"r2d2",
"serde_json",
"64-column-tables",
] }
diesel_migrations = { version = "2.1", features = ["postgres"] }
dotenv = "0.15"
futures = "0.3"
r2d2 = "0.8"
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = [
"macros",
"io-util",
"fs",
"rt-multi-thread",
"time",
] }
tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1"
tracing-subscriber = "0.3"
warp = { version = "0.3", default-features = false }
zip = "0.6"