-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 873 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
[package]
name = "superball"
version = "0.1.0"
authors = ["CryptArchy <[email protected]>"]
publish = false
[features]
default = ["rustc-serialize"]
use_serde = ["serde", "serde_json", "serde_macros"]
[dependencies]
version = "2.0"
log = "0.3"
log4rs = { version = "0.4", features = ["toml"] }
iron = "*"
router = "*"
urlencoded = "*"
# handlebars-iron = { version = "*", features = ["serde_type"] }
handlebars-iron = { version = "*" }
rusqlite = "0.7.3"
time = "0.1.35"
plugin = "^0.2.6"
maplit = "^0.1.3"
rustc-serialize = { version = "*", optional = true }
serde = { version = "0.8", optional = true }
serde_json = { version = "0.8", optional = true } #for examples and stable compiler builds
serde_macros = { version = "0.8", optional = true }
serde_codegen = { version = "0.8", optional = true }
[dependencies.params]
git = "https://github.com/iron/params.git"