-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) 路 819 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) 路 819 Bytes
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
[package]
name = "phd"
version = "0.1.15"
authors = ["chris west <c@xvxx.io>"]
license = "MIT"
edition = "2018"
description = "an esoteric gopher server"
readme = "README.md"
repository = "https://github.com/xvxx/phd"
keywords = ["gopher", "server", "daemon"]
exclude = [
"img/*"
]
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
opt-level = 'z' # Optimize for size.
[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}}"},
]
[dependencies]
content_inspector = "0.2.4"
threadpool = "1.7.1"
alphanumeric-sort = "1.4"
shell-escape = "0.1.4"