-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 866 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
29
30
31
32
33
[package]
name = "rust-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = {version="=0.5.0-rc.3", features= ["json"]}
rocket_cors = { version = "0.5.2", default-features = false }
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.75"
scrypt = { version = "0.11.0", default-features = true }
chrono = { version = "0.4.19", features = ["serde"] }
diesel = { version = "2.1.0", features = ["postgres", "chrono"] }
validator = "0.16.0"
validator_derive = "0.16.0"
slug = "0.1.4"
rand = "0.8.4"
dotenv = "0.15.0"
jsonwebtoken = "8.3.0"
[dependencies.rocket_sync_db_pools]
version = "0.1.0-rc.1"
features = ["diesel_postgres_pool"]
[dev-dependencies]
once_cell = "1.9.0"
[features]
default = ["random-suffix"]
random-suffix = []