-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (42 loc) · 1.11 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
[package]
name = "hci-bildung"
version = "0.1.0"
authors = ["Florian Lercher <florian.lercher@tum.de>"]
edition = "2018"
default-run = "hci-bildung"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.13.0"
diesel_migrations = "1.3"
fern = "0.5"
log = "0.4"
rand = "0.8.4"
rpassword = "6.0.1"
rust-crypto = "^0.2"
serde = "1.0.136"
serde_json = "1.0"
tera = "^1.15.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.diesel]
version = "1.4"
features = ["chrono", "postgres", "r2d2", "serde_json", "uuidv07"]
[dependencies.diesel-derive-enum]
version = "1.1.2"
features = ["postgres"]
[dependencies.rocket]
version = "0.5.0-rc.1"
features = ["json", "secrets", "uuid"]
[dependencies.postgres-types]
version = "0.2.2"
features = ["derive", "with-chrono-0_4", "with-uuid-0_8", "with-serde_json-1"]
[dependencies.rocket_dyn_templates]
version = "0.1.0-rc.1"
features = ["tera"]
[dependencies.rocket_sync_db_pools]
version = "0.1.0-rc.1"
features = ["diesel_postgres_pool"]
[dependencies.uuid]
version = "0.8"
features = ["serde"]