forked from lsd-rs/lsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 945 Bytes
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[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"]
license = "Apache-2.0"
name = "lsd"
readme = "./README.md"
repository = "https://github.com/Peltoche/lsd"
version = "0.8.1-pre"
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
clap = "2.32.0"
version_check = "0.1.3"
[dependencies]
ansi_term = "0.11.0"
libc = "0.2.44"
term_grid = "0.1.7"
terminal_size = "0.1.8"
time = "0.1.40"
users = "0.8.0"
[dependencies.clap]
features = ["suggestions", "color", "wrap_help"]
version = "2.32.0"
[dev-dependencies]
tempdir = "0.3.7"
[metadata.release]
no-dev-version = true
sign-commit = true
[[metadata.release.pre-release-replacements]]
file = "README.md"
replace = "lsd_ {{version}}_amd64.deb"
search = "lsd_[a-z0-9\\.-]+_amd64.deb"
[features]
sudo = []