forked from vn971/rua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (51 loc) · 1.84 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
[package]
name = "rua"
version = "0.19.10"
rust-version = "1.62"
description = "Secure jailed AUR helper for Arch Linux"
authors = [
"Vasili Novikov (maintainer) <[email protected]>",
"The many great contributors, see github and gitlab <users@git>",
]
license="GPL-3.0-or-later"
edition="2021"
keywords = ["archlinux", "aur", "build", "jail", "bubblewrap"]
readme = "README.md"
repository = "https://github.com/vn971/rua"
build = "build.rs"
[features]
default=["testpacman", "rustls-tls"]
testpacman = [] # whether to perform pacman checks on tests
native-tls = ["raur/native-tls"] # build with support for OS native TLS
rustls-tls = ["raur/rustls-tls"] # build with rustls TLS
[build-dependencies]
structopt = "0.3.26"
libscmp = "0.2.0"
[dependencies]
alpm = { version = "2.2.3", default-features = false, features = [], optional = true }
anyhow = { version = "1.0.79", default-features = false, features = ["std", "backtrace"] }
chrono = { version = "0.4.31", default-features = false, features = ["std", "clock"] }
colored = "2.0.2"
directories = "5.0.1"
env_logger = "0.10.1"
fs2 = "0.4.3"
fs_extra = "1.3.0"
indexmap = { version = "1.9.3", default-features = false }
itertools = { version = "0.11.0", default-features = false, features = ["use_std"] }
lazy_static = "1.4.0"
libc = { version = "0.2.151", default-features = false }
libflate = "2.0.0"
log = { version = "0.4.20", default-features = false }
prettytable-rs = "0.10.0"
raur = { version = "7.0.0", default-features = false, features = ["blocking", "rustls-tls"] }
regex = { version = "1.9.6", default-features = false, features = ["perf"] }
rm_rf = "0.6.2"
ruzstd = "0.4.0"
srcinfo = "1.1.0"
structopt = "0.3.26"
tar = { version = "0.4.40", default-features = false }
termize = "0.1.1"
uname = "0.1.1"
xz2 = "0.1.7"
[profile.release]
lto = "thin"