-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (35 loc) · 1.22 KB
/
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
[package]
name = "rumblebars"
version = "0.3.0"
authors = ["Nicolas Cherel"]
description = "a handlerbars template expansion library"
homepage = "https://github.com/nicolas-cherel/rumblebars"
repository = "https://github.com/nicolas-cherel/rumblebars"
readme = "README.md"
keywords = ["handlerbars", "template", "expansion", "engine", "helper"]
license = "MIT/Apache-2.0"
build = "build.rs"
[features]
default = ["stable"]
nightly = ["rustlex"]
stable = ["with-syntex"]
with-syntex = [ "syntex", "rustlex_codegen/with-syntex"]
stream_test = ["rand", "time"]
[build-dependencies]
rustlex_codegen = { version = "*", optional = true }
syntex = { version = "*", optional = true }
[lib]
name = "rumblebars"
[dependencies]
rustc-serialize = "0.3"
regex = "*"
lazy_static = "*"
rustlex_codegen = { version = "*", optional = true }
rustlex = { version = "*", optional = true }
rand = { version = "*", optional = true }
time = { version = "*", optional = true }
# for dev cycles
# [dependencies.rustlex]
# path = "../rustlex" # either this for local rustlex install
# git = "https://github.com/nicolas-cherel/rustlex" # or that for compat buffer
# branch = "rumblebars-compat"