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.
phetch/Cargo.toml

37 lines
829 B
TOML

[package]
name = "phetch"
version = "0.1.13-dev"
authors = ["dvkt <c@dvkt.io>"]
license = "MIT"
edition = "2018"
description = "quick lil gopher client"
readme = "README.md"
repository = "https://github.com/dvkt/phetch"
keywords = ["gopher", "tui", "terminal", "cli"]
categories = ["command-line-utilities"]
exclude = [
"img/*"
]
[features]
disable-tls = []
default =[]
[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="phetch-v\\d+\\.\\d+\\.\\d+-", replace="{{crate_name}}-v{{version}}-"},
{file="README.md", search="/v\\d+\\.\\d+\\.\\d+/", replace="/v{{version}}/"},
]
dev-version-ext = "dev"
[dependencies]
termion = "1.5.3"
native-tls = "0.2"
libc = "0.2.66"
tor-stream = "0.2.0"