-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
56 lines (49 loc) · 1.47 KB
/
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
48
49
50
51
52
53
54
55
56
[package]
name = "rualdi"
version = "0.2.3"
authors = ["Jean-Pierre Geslin <[email protected]>", "Lucas Burns <[email protected]>"]
description = "Rust Aliasing Directory"
license = "AGPL-3.0-or-later"
edition = "2018"
repository = "https://github.com/Jarsop/rualdi"
categories = ["command-line-utilities", "filesystem"]
keywords = ["cli", "shell", "utility", "bash", "zsh"]
readme = "README.md"
[features]
dumb_terminal = ["colored/no-color"]
[dependencies]
rualdlib = { version = "0.1.4", path = "rualdlib" }
structopt = "0.3.17"
anyhow = "1.0.32"
dirs-next = "2.0.0"
colored = "2.0.0"
terminal_size = "0.1.17"
glob = "0.3.0"
clap = "2.33.3"
async-channel = "1.6.1"
[dev-dependencies]
rualdi = { path = ".", features = ["dumb_terminal"] }
rualdlib = { version = "0.1.4", path = "rualdlib", features = ["dumb_terminal"] }
tempfile = "3.1.0"
toml = "0.5.6"
serial_test = "0.5.0"
gag = "0.1.10"
[package.metadata.deb]
maintainer = "Jean-Pierre Geslin <[email protected]>"
copyright = "2021, Jean-Pierre Geslin <[email protected]>"
license-file = ["LICENSE", "4"]
extended-description = """\
A tool to aliasing directories written safely in Rust."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/rualdi", "usr/bin/", "755"],
["README.md", "usr/local/share/doc/rualdi/README", "644"],
]
[package.metadata.rpm]
package = "rualdi"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
rualdi = { path = "/usr/bin/rualdi" }