2020-04-05 18:29:19 -04:00
[ package ]
name = "duster"
2021-02-06 16:28:56 -05:00
version = "0.1.1"
2020-04-05 18:29:19 -04:00
authors = [ "Tom Alexander <tom@fizz.buzz>" ]
2020-12-29 18:31:44 -05:00
description = "A rust implementation of the dustjs template engine."
2020-04-05 18:29:19 -04:00
edition = "2018"
2020-12-29 18:31:44 -05:00
license = "0BSD"
repository = "https://code.fizz.buzz/talexander/duster"
readme = "README.md"
keywords = [ "dust" , "dustjs" , "templating" , "web" ]
categories = [ "template-engine" ]
2020-04-05 18:29:19 -04:00
2020-12-29 17:51:46 -05:00
[ features ]
2020-12-29 18:21:12 -05:00
default = [ "json-integration" ]
2020-12-29 18:07:49 -05:00
json-integration = [ "serde" , "serde_json" ]
2020-12-29 17:51:46 -05:00
2020-04-05 19:12:48 -04:00
[ lib ]
name = "duster"
path = "src/lib.rs"
[ [ bin ] ]
name = "duster-cli"
path = "src/bin.rs"
2020-12-29 17:51:46 -05:00
required-features = [ "json-integration" ]
2020-04-05 18:29:19 -04:00
[ dependencies ]
2021-02-06 16:23:54 -05:00
nom = "6.1.0"
# The author of nom is too busy to review the PR, and cargo does not allow for git dependencies, so I am going to copy my implementation into this code base so I can use upstream nom so I can push to cargo.
# nom = { git = "https://github.com/tomalexander/nom.git", branch = "take_until_parser_matches" }
2020-12-29 18:07:49 -05:00
serde = { version = "1.0.106" , optional = true }
serde_json = { version = "1.0.51" , optional = true }