-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
38 lines (34 loc) · 923 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 = "ructe"
version = "0.17.2"
authors = ["Rasmus Kaj <[email protected]>"]
description = "Rust Compiled Templates, efficient type-safe web page templates."
documentation = "https://docs.rs/ructe"
repository = "https://github.com/kaj/ructe"
readme = "README.md"
keywords = ["web", "templating", "template", "html"]
categories = ["template-engine", "web-programming"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.61.0"
[features]
sass = ["rsass"]
mime02 = []
mime03 = ["mime"]
warp03 = ["mime03"]
http-types = []
tide016 = ["tide013"]
tide015 = ["tide013"]
tide014 = ["tide013"]
tide013 = ["http-types"]
[dependencies]
base64 = "0.22.1"
bytecount = "0.6.0"
itertools = "0.13.0"
md5 = "0.7"
nom = "7.1.0"
rsass = { version = "0.28.0", optional = true }
mime = { version = "0.3", optional = true }
[badges]
travis-ci = { repository = "kaj/ructe" }
maintenance = { status = "actively-developed" }