forked from sunng87/handlebars-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 874 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 = "handlebars"
version = "0.29.1-pre"
authors = ["Ning Sun <sunng@about.me>"]
description = "Handlebars templating implemented in Rust."
license = "MIT"
keywords = ["handlebars", "templating", "web"]
categories = ["template-engine"]
homepage = "https://github.com/sunng87/handlebars-rust"
repository = "https://github.com/sunng87/handlebars-rust"
documentation = "https://docs.rs/handlebars/"
readme = "README.md"
[lib]
name = "handlebars"
path = "src/lib.rs"
[dependencies]
log = "^0.3.1"
quick-error = "^1.0.0"
pest = "^0.3.0"
serde = "^1.0.0"
serde_json = "^1.0.0"
regex = "^0.2.0"
lazy_static = "^0.2.2"
[dev-dependencies]
env_logger = "^0.4.0"
maplit = "^0.1.3"
serde_derive = "^1.0.0"
[package.metadata.release]
sign-commit = true
upload-doc = true
pre-release-replacements = [ {file="CHANGELOG.md", search="Unreleased", replace="{{version}}"} ]