-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (47 loc) · 1.33 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
[package]
name = "apt-swarm"
version = "0.2.0"
description = "🥸 p2p gossip network for update transparency, based on pgp 🥸"
authors = ["kpcyrd <git@rxv.cc>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/kpcyrd/apt-swarm"
categories = ["command-line-utilities"]
edition = "2021"
[workspace]
members = ["fuzz"]
[dependencies]
anyhow = "1.0.68"
async-trait = "0.1.64"
bstr = { version = "1.2.0", features = ["serde"] }
bytes = "1.4.0"
clap = { version = "4.0.32", features = ["derive", "env"] }
clap_complete = "4.0.7"
colored = "2.0.0"
dirs = "5"
env_logger = "0.11"
fastrand = "2"
futures = "0.3.26"
getrandom = "0.2.8"
gix = "0.63"
gix-object = "0.42"
hex = "0.4.3"
indexmap = "2"
ipnetwork = "0.20.0"
irc = { version = "1", default-features = false, features = ["tls-rust"] }
lazy_static = "1.4.0"
log = "0.4.17"
lru = "0.12"
memchr = "2.5.0"
num-format = "0.4.4"
reqwest = { version = "0.12", features = ["rustls-tls", "socks"], default-features = false }
sequoia-openpgp = "1.21"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
sha2 = "0.10.6"
sled = { version = "0.34.7", features = ["compression"] }
socket2 = "0.5"
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread", "io-util", "io-std", "fs", "process", "net"] }
tokio-socks = "0.5.1"
toml = "0.8"
[dev-dependencies]
tempfile = "3.4.0"