You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phd/Cargo.toml

33 lines
819 B
TOML

4 years ago
[package]
name = "phd"
version = "0.1.15"
4 years ago
authors = ["chris west <c@xvxx.io>"]
4 years ago
license = "MIT"
4 years ago
edition = "2018"
4 years ago
description = "an esoteric gopher server"
readme = "README.md"
4 years ago
repository = "https://github.com/xvxx/phd"
4 years ago
keywords = ["gopher", "server", "daemon"]
exclude = [
"img/*"
]
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
opt-level = 'z' # Optimize for size.
4 years ago
4 years ago
[package.metadata.release]
pre-release-replacements = [
{file="README.md", search="phd-v\\d+\\.\\d+\\.\\d+-", replace="{{crate_name}}-v{{version}}-"},
{file="README.md", search="/v\\d+\\.\\d+\\.\\d+/", replace="/v{{version}}/"},
{file="CHANGELOG.md", search="\\d+\\.\\d+\\.\\d+-dev", replace="{{version}}"},
4 years ago
]
[dependencies]
content_inspector = "0.2.4"
threadpool = "1.7.1"
alphanumeric-sort = "1.4"
4 years ago
shell-escape = "0.1.4"