sailfish/sailfish-compiler/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2020-06-04 16:39:33 -04:00
[package]
name = "sailfish-compiler"
2022-03-10 15:20:47 -05:00
version = "0.4.0"
2020-06-04 16:39:33 -04:00
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
2021-04-06 07:46:46 -04:00
description = "Simple, small, and extremely fast template engine for Rust"
2022-02-19 00:47:00 -05:00
homepage = "https://github.com/rust-sailfish/sailfish"
repository = "https://github.com/rust-sailfish/sailfish"
2020-06-04 16:39:33 -04:00
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 = []
config = ["serde", "toml"]
2020-06-04 16:39:33 -04:00
[dependencies]
memchr = "2.3.3"
quote = { version = "1.0.6", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
toml = { version = "0.5", optional = true }
2020-08-03 14:32:56 -04:00
home = "0.5.3"
filetime = "0.2.14"
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]
version = ">=1.0.11, <=1.0.43"
2020-06-04 16:39:33 -04:00
default-features = false
features = ["span-locations"]
[dev-dependencies]
2022-02-12 19:03:46 -05:00
pretty_assertions = "1.1.0"