-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 loc) · 1.26 KB
/
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
39
40
41
42
43
[package]
name = "lignin-html"
version = "0.0.5"
authors = ["Tamme Schichler <[email protected]>"]
edition = "2018"
description = "HTML renderer for lignin VDOM Nodes. This crate is primarily for static and server-side rendering. For client-side use, see lignin-dom."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/lignin-html"
homepage = "https://github.com/Tamschi/lignin-html/tree/v0.0.5"
documentation = "https://docs.rs/lignin-html/0.0.5"
keywords = ["VDOM", "HTML"]
categories = ["web-programming", "text-processing"]
readme = "README.md"
include = [
"**/*.rs",
"!tests/unincluded_*.rs", # Tests of meta data files not included in the package.
"Cargo.toml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"COPYRIGHT.md",
"LICENSE-*",
"README.md",
"SECURITY.md",
]
publish = false
[badges]
is-it-maintained-issue-resolution = { repository = "Tamschi/lignin-html" }
is-it-maintained-open-issues = { repository = "Tamschi/lignin-html" }
maintenance = { status = "experimental" } # This may differ between branches.
[features]
std = [] # Implements std::error::Error on lignin_html::Error
[dependencies]
lignin = "0.1.0" # public
logos = "0.12.0"
[dev-dependencies]
cargo-husky = "1.5.0"
git_info = "0.1.2"
version-sync = "0.9.3"
wasm-bindgen-test = "0.3.28"