-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (29 loc) · 806 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
[package]
name = "smart_dealer"
version = "0.1.0"
authors = ["Kamil Markiewicz <[email protected]>"]
license = "MIT"
repository = "https://github.com/kamarkiewicz/smart_dealer.git"
[[bin]]
name = "app"
path = "app.rs"
[dependencies.time]
git = "https://github.com/kamarkiewicz/time.git"
features = ["rustc-serialize", "postgres"]
[dependencies.postgres]
version = "*"
features = ["rustc-serialize"]
[dependencies.iron-postgres-middleware]
git = "https://github.com/kamarkiewicz/iron-postgres-middleware.git"
[dependencies.handlebars-iron]
git = "https://github.com/sunng87/handlebars-iron.git"
[dependencies.mount]
git = "https://github.com/iron/mount.git"
[dependencies]
iron = "*"
router = "*"
rustc-serialize = "*"
tojson_macros = "*"
staticfile = "*"
maplit = "*"
# [dev-dependencies]