sailfish/sailfish-compiler/Cargo.toml

42 lines
985 B
TOML
Raw Normal View History

2020-06-04 16:39:33 -04:00
[package]
name = "sailfish-compiler"
2020-12-20 08:16:25 -05:00
version = "0.3.0"
2020-06-04 16:39:33 -04:00
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish"
repository = "https://github.com/Kogia-sima/sailfish"
readme = "../README.md"
keywords = ["markup", "template", "html"]
categories = ["template-engine"]
license = "MIT"
workspace = ".."
edition = "2018"
[lib]
name = "sailfish_compiler"
doctest = false
[features]
2020-06-14 17:44:49 -04:00
default = ["config"]
2020-06-04 16:39:33 -04:00
procmacro = []
2020-06-14 17:44:49 -04:00
config = ["yaml-rust"]
2020-06-04 16:39:33 -04:00
[dependencies]
memchr = "2.3.3"
quote = { version = "1.0.6", default-features = false }
2020-06-14 17:44:49 -04:00
yaml-rust = { version = "0.4.4", optional = true }
2020-08-03 14:32:56 -04:00
home = "0.5.3"
2020-06-04 16:39:33 -04:00
[dependencies.syn]
version = "1.0.21"
default-features = false
features = ["parsing", "full", "visit-mut", "printing"]
2020-06-04 16:39:33 -04:00
[dependencies.proc-macro2]
2020-11-10 20:46:40 -05:00
version = ">=1.0.11, <=1.0.24"
2020-06-04 16:39:33 -04:00
default-features = false
features = ["span-locations"]
[dev-dependencies]
pretty_assertions = "0.6.1"