forked from FauxFaux/fapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (60 loc) · 1.16 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
65
66
67
68
69
70
71
72
73
[package]
authors = ["Chris West (Faux) <[email protected]>"]
categories = [
"os",
"parsing",
]
description = "Faux' apt package manager for Debian"
license = "MIT OR Apache-2.0"
name = "fapt"
readme = "README.md"
repository = "https://github.com/FauxFaux/fapt"
version = "0.1.1"
edition = "2021"
exclude = [
"tests/lists/trusty.list",
]
[badges.appveyor]
branch = "master"
repository = "FauxFaux/fapt"
service = "github"
[badges.travis-ci]
repository = "FauxFaux/fapt"
[features]
binaries = ["clap"]
[dependencies]
anyhow = "1"
deb-version = "0.1"
distro-keyring = "0.1"
chrono = "0.4"
directories = "4"
filetime = "0.2"
gpgrv = "0.4"
hex = "0.4"
insideout = "0.2"
mailparse = "0.13"
md-5 = "0.10"
nom = "4"
sha2 = "0.10"
tempfile = "3"
tempfile-fast = "0.3"
[dependencies.clap]
optional = true
features = ["cargo"]
version = "4"
[dependencies.digest]
features = ["std"]
version = "0.10"
[dependencies.flate2]
default-features = false
features = ["rust_backend"]
version = "1"
[dependencies.reqwest]
features = ["blocking"]
version = "0.11.22"
[dependencies.jemallocator]
optional = true
version = "0.3"
[[bin]]
name = "fapt"
required-features = ["binaries"]