-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
43 lines (35 loc) · 947 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
34
35
36
37
38
39
40
41
42
43
[package]
name = "rust-rocket-sample"
description = "Rocket.rs CRUD REST API example"
version = "1.3.1"
edition = "2021"
authors = ["TaeyoonKwon <[email protected]>", "Ismael Belisario <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ismaelxyz/rust-rocket-sample"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0"
schemars = "0.8"
okapi = "0.7.0"
dotenv = "0.15.0"
futures = "0.3"
[dependencies.rocket]
version = "0.5.0-rc.4"
default-features = false
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.rocket_okapi]
version = "0.8.0"
features = ["swagger", "secrets"]
[dependencies.mongodb]
version = "2.8.2"
features = ["bson-chrono-0_4"]
[dependencies.bson]
version = "2.10.0"
features = ["chrono-0_4"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]