-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
33 lines (26 loc) · 751 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
27
28
29
30
31
32
33
[package]
name = "rocket-mongo-example"
version = "0.1.0"
authors = ["Peter A. Tariche <ptariche@gmail.com>"]
[dependencies]
rocket = {git = "https://github.com/SergioBenitez/Rocket.git"}
rocket_codegen = {git = "https://github.com/SergioBenitez/Rocket.git"}
rocket_contrib = { features = ["uuid"], git = "https://github.com/SergioBenitez/Rocket.git" }
uuid = { version = "0.5", features = ["v4"] }
rust-crypto = "^0.2"
serde = "1.0.8"
serde_derive = "1.0.8"
serde_json = "1.0.2"
bson = "0.10.0"
mongodb = "0.3.7"
time = "*"
regex = "*"
rand = "*"
jsonwebtoken = "1"
rustc-serialize = "0.3"
[dev-dependencies]
rocket = { git = "https://github.com/SergioBenitez/Rocket.git" }
[development]
address = "localhost"
[production]
address = "0.0.0.0"