forked from Morganamilo/paru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (57 loc) · 1.51 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
57
58
59
60
61
62
63
64
[package]
name = "paru"
version = "1.9.2"
authors = ["morganamilo <[email protected]>"]
edition = "2018"
description = "Aur helper and pacman wrapper"
homepage = "http://github.com/Morganamilo/paru"
repository = "http://github.com/Morganamilo/paru"
documentation = "https://docs.rs/paru"
license = "GPL-3.0"
keywords = ["archlinux", "arch", "alpm", "pacman", "aur"]
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md", "help"]
[dependencies]
alpm = "2.1.3"
alpm-utils = "1.1.2"
aur-depends = "1.0.3"
aur-fetch = "0.10.0"
cini = "0.1.1"
pacmanconf = "1.0.0"
raur = "5.0.1"
srcinfo = "1.0.0"
ansi_term = "0.12.1"
anyhow = "1.0.51"
chrono = "0.4.19"
dirs = "4.0.0"
futures = "0.3.18"
globset = "0.4.8"
htmlescape = "0.3.1"
indicatif = "0.16.2"
kuchiki = "0.8.1"
nix = "0.23.0"
reqwest = { version = "0.11.7", features = ["gzip", "socks"] }
rss = { version = "2.0.0", default-features = false }
serde = { version = "1.0.131", features = ["derive"] }
serde_json = "1.0.72"
smart-default = "0.6.0"
tempfile = "3.2.0"
term_size = "0.3.2"
tokio = { version = "1.14.0", features = ["process", "macros", "rt-multi-thread"] }
url = "2.2.2"
env_logger = "0.9.0"
log = "0.4.14"
async-trait = { version = "0.1.52", optional = true }
tr = "0.1.6"
unicode-width = "0.1.9"
regex = "1.5.4"
signal-hook = "0.3.12"
once_cell = "1.8.0"
[profile.release]
codegen-units = 1
lto = true
[features]
git = ["alpm/git", "alpm-utils/git", "aur-depends/git"]
backtrace = []
generate = ["alpm/generate"]
static = ["alpm/static"]
mock = ["async-trait"]