-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (33 loc) · 889 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
[package]
name = "hatter"
description = "positively mad, zero dependency html templating language"
homepage = "https://hatter.rs"
repository = "https://github.com/xvxx/hatter"
version = "0.1.5-dev"
authors = ["chris west <c@xvxx.io>"]
documentation = "https://docs.rs/hatter/"
edition = "2018"
license = "MIT/Apache-2.0"
keywords = ["template", "html", "hatter"]
categories = ["template-engine"]
exclude = [
"examples/*",
"docs/*",
"tests/*",
"img/*"
]
[profile.release]
# Optimize for build speed, for now.
lto = false
codegen-units = 16
opt-level = 0
# Change v1.4.1 -> v1.4.2 in README on `cargo release`
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="\\d+\\.\\d+\\.\\d+-dev", replace="{{version}}"},
]
dev-version-ext = "dev"
[features]
repl = ["rustyline"]
[dependencies]
rustyline = { version = "6.2.0", optional = true }