-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
22 lines (20 loc) · 793 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 = "rust_rest_api_boilerplate"
version = "0.1.0"
edition = "2021"
authors = ["Yura <leonyvb04@gmail.com> Batazov"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mongodb = { version = "2.2.1", default-features = false, features = ["async-std-runtime"]}
rocket = { version = "0.5.0-rc.2", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
bcrypt = "0.13.0"
chrono = "0.4.19"
jsonwebtoken = "8.1.0"
rand_core = { version = "0.6", features = ["std"] }
base64 = "0.13.0"
regex = "1.5.6"
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", branch = "master" }
schemars = "0.8.10"
okapi = { version = "0.7.0-rc.1" }
rocket_okapi = { version = "0.8.0-rc.2", features = ["swagger"] }