-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
56 lines (32 loc) · 992 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
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "common"
version = "0.1.0"
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>",
"Zach Pomerantz <zmp@umich.edu>",
"Patrick Tran <patrick.tran06@gmail.com>",
"Michael Reinhard <mcreinhard@gmail.com>",
"Tony Stark"]
[[lib]]
name = "common"
path = "src/lib.rs"
[dependencies.iron]
git = "https://github.com/iron/iron.git"
[dependencies.urlencoded]
git = "https://github.com/iron/urlencoded.git"
[dependencies.logger]
git = "https://github.com/iron/logger.git"
[dependencies.router]
git = "https://github.com/iron/router.git"
[dependencies.mount]
git = "https://github.com/iron/mount.git"
[dependencies.persistent]
git = "https://github.com/iron/persistent.git"
[dependencies.static]
git = "https://github.com/iron/static.git"
[dependencies.session]
git = "https://github.com/iron/session.git"
[dependencies.cookie]
git = "https://github.com/iron/cookie.git"
[dependencies.bodyparser]
git = "https://github.com/iron/body-parser.git"