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"
version = "0.8.3"
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.5.0"
quote = { version = "1.0.26", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
2023-10-17 10:55:47 -04:00
toml = { version = "0.8.2", optional = true }
home = "0.5.4"
filetime = "0.2.21"
2020-06-04 16:39:33 -04:00
[dependencies.syn]
version = "2.0"
2020-06-04 16:39:33 -04:00
default-features = false
features = ["parsing", "full", "visit-mut", "printing"]
2020-06-04 16:39:33 -04:00
[dependencies.proc-macro2]
2022-10-25 09:41:00 -04:00
version = ">=1.0.11, <1.1.0"
2020-06-04 16:39:33 -04:00
default-features = false
features = ["span-locations"]
[dev-dependencies]
pretty_assertions = "1.3.0"