summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: d9b3d33b6e47b5e73b69d68e7b65f57cf0daf7b7 (plain)
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
[package]
authors = ["Peltoche <dev@halium.fr>"]
categories = ["command-line-utilities"]
description = "A ls command with a lot of pretty colors."
homepage = "https://github.com/Peltoche/lsd"
keywords = ["ls"]
license = "./LICENSE"
name = "lsd"
readme = "./README.md"
repository = "https://github.com/Peltoche/lsd"
version = "0.1.0"

[dependencies]
ansi_term = "0.11.0"
clap = "2.32.0"
failure = "0.1.3"
lazy_static = "1.2.0"
size = "0.1.1"
terminal_size = "0.1.8"
time = "0.1.40"
users = "0.8.0"

[package.metadata.deb]
maintainer = "Peltoche <dev@halium.fr>"
license-file = ["LICENSE", "2"]
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
    ["target/release/lsd", "usr/bin/", "755"],
    ["README.md", "usr/share/doc/cargo-deb/README", "644"],
]