2
0
mirror of https://github.com/xvxx/phetch synced 2024-11-10 13:10:54 +00:00
phetch/Cargo.toml

23 lines
478 B
TOML
Raw Normal View History

2019-06-06 17:19:29 +00:00
[package]
name = "phetch"
2019-12-31 04:23:08 +00:00
version = "0.1.5-pre"
2019-06-06 17:19:29 +00:00
authors = ["dvkt <c@dvkt.io>"]
2019-12-24 08:35:51 +00:00
license = "MIT"
2019-12-24 21:57:07 +00:00
edition = "2018"
2019-12-24 08:35:51 +00:00
description = "a terminal gopher client designed to help you quickly navigate the gophersphere"
2019-12-24 09:00:03 +00:00
readme = "README.md"
2019-12-24 08:35:51 +00:00
repository = "https://github.com/dvkt/phetch"
2019-12-24 08:38:58 +00:00
keywords = ["gopher", "tui", "terminal"]
2019-12-24 08:37:58 +00:00
exclude = [
"img/*"
]
2019-06-06 17:19:29 +00:00
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
2019-12-23 00:58:06 +00:00
opt-level = 'z' # Optimize for size.
2019-06-06 17:19:29 +00:00
[dependencies]
2019-12-24 08:18:08 +00:00
termion = "1.5.3"