lsd/Cargo.toml

39 lines
898 B
TOML
Raw Normal View History

2018-11-12 12:33:47 +00:00
[package]
authors = ["Peltoche <dev@halium.fr>"]
build = "build.rs"
categories = ["command-line-utilities"]
description = "A ls command with a lot of pretty colors."
homepage = "https://github.com/Peltoche/lsd"
keywords = ["ls"]
2018-11-25 11:47:41 +00:00
license-file = "./LICENSE"
2018-11-12 12:33:47 +00:00
name = "lsd"
readme = "./README.md"
repository = "https://github.com/Peltoche/lsd"
2018-12-07 16:00:08 +00:00
version = "0.7.12"
2018-11-12 12:33:47 +00:00
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
clap = "2.32.0"
version_check = "0.1.3"
2018-11-12 12:33:47 +00:00
[dependencies]
ansi_term = "0.11.0"
lazy_static = "1.2.0"
libc = "0.2.44"
2018-11-25 14:56:39 +00:00
term_grid = "0.1.7"
2018-11-24 16:42:39 +00:00
terminal_size = "0.1.8"
2018-11-12 12:33:47 +00:00
time = "0.1.40"
users = "0.8.0"
2018-11-30 13:53:54 +00:00
[dependencies.clap]
version = "2.32.0"
features = ["suggestions", "color", "wrap_help"]
2018-12-06 18:44:35 +00:00
[package.metadata.release]
sign-commit = true
no-dev-version = true
pre-release-replacements = [ {file="README.md", search="lsd_[a-z0-9\\.-]+_amd64.deb", replace="lsd_ {{version}}_amd64.deb"} ]