-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 719 Bytes
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
[package]
authors = ["Redfox <vitor_pereira.2013@hotmail.com>"]
version = "0.1.0"
name = "rustapi"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = "0.4.4"
rocket_codegen = "0.4.4"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
dotenv = "0.15.0"
chrono = { version = "0.4.10", features = ["serde"] }
diesel = { version = "1.4.4", features = ["postgres", "chrono"] }
jsonwebtoken = "6.0.1"
rust-crypto = "0.2.36"
validator = "0.10.0"
validator_derive = "0.10.0"
[dependencies.rocket_contrib]
version = "0.4.4"
default-features = false
features = ["json", "diesel_postgres_pool"]