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

39 lines
851 B
TOML

5 years ago
[package]
name = "phetch"
version = "0.9.0-dev"
4 years ago
authors = ["chris west <c@xvxx.io>"]
license = "MIT"
edition = "2018"
4 years ago
description = "quick lil gopher client"
4 years ago
readme = "README.md"
4 years ago
repository = "https://github.com/xvxx/phetch"
4 years ago
keywords = ["gopher", "tui", "terminal", "cli"]
categories = ["command-line-utilities"]
4 years ago
exclude = [
"img/*"
]
5 years ago
4 years ago
[features]
disable-tls = []
default =[]
4 years ago
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
4 years ago
opt-level = 'z' # Optimize for size.
[package.metadata.release]
pre-release-replacements = [
4 years ago
{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"
5 years ago
[dependencies]
4 years ago
termion = "1.5.3"
native-tls = "0.2"
libc = "0.2.66"
tor-stream = "0.2.0"
atty = "0.2.14"