-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
22 lines (18 loc) · 869 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
[package]
name = "back"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
base64 = "0.13"
chrono = {version = "0.4.20", features = ["serde"] }
diesel = {version = "2.1.0", features = ["mysql", "r2d2", "chrono"]}
pbkdf2 = {version = "0.11.0"}
rand_core = { version = "0.6", features = ["std"] }
jsonwebtoken = "8.1.1"
rocket = { version = "0.5.0-rc.3", features = ["json", "secrets"] }
rocket_sync_db_pools = { version = "0.1.0-rc.3", features = ["diesel_mysql_pool"]}
# rocket_db_pools = {version = "0.1.0-rc.3", features = ["sqlx_mysql"]}
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", branch = "master", default-features = false }