-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (50 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "galera"
version = "0.1.0"
authors = ["Ondřej Pešek <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Web server
rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"] }
# Database
diesel = { version = "1.4.8", features = ["mysql", "r2d2", "chrono"] }
diesel_migrations = "1.4.0"
rocket_sync_db_pools = { version = "0.1.0-rc.1", features = ["diesel_mysql_pool"] }
r2d2 = "0.8.9"
# Logging
log = "0.4.14"
env_logger = "0.9.0"
# Openapi
rocket_okapi = { version = "0.8.0-rc.2", default-features = false, features = ["swagger"] }
okapi = { version = "0.7.0-rc.1" }
# Validation
email_address = "0.2.0"
lazy-regex = "2.2.2"
# Media
infer = "0.8.0"
image = "0.24.2"
# Utilities
serde_json = "1.0.68"
serde = { version = "1.0.130", features = ["derive"] }
dotenv = "0.15.0"
chrono = { version = "0.4.19", features = ["serde"] }
checksums = "0.7.1"
futures = "0.3.17"
uuid = { version = "1.1.1", features = ["v4"] }
schemars = { version = "0.8.6", features = ["chrono"] }
jsonwebtoken = "7.2.0"
rand = "0.8.4"
sha2 = "0.10.2"
anyhow = "1.0.44"
directories = "4.0"
nanoid = "0.4.0"
sys-info = "0.9.1"
base64 = "0.13.0"
walkdir = "2.3.2"
[dev-dependencies]
[workspace]
members = [
"galera-cli",
]