forked from EFForg/generate-smarter-encryption-bloom-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 889 Bytes
/
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
[package]
name = "generate-smarter-encryption-bloom-filter"
version = "0.1.0"
authors = ["William Budington <bill@eff.org>"]
edition = "2018"
license = "GPL-3.0"
description = "Download and generate a bloom filter from the DuckDuckGo smarter encryption HTTPS list, intersected with the Majestic Million"
homepage = "https://github.com/EFForg/generate-smarter-encryption-bloom-filter"
repository = "https://github.com/EFForg/generate-smarter-encryption-bloom-filter"
[dependencies]
bloomfilter = "1.0"
serde_json = "1.0"
ring = "0.16"
hex = "0.4"
reqwest = { version = "0.11", features = ["stream"] }
tokio = { version = "1", features = ["full"] }
futures-util = { version = "0.3", features = ["io"] }
bytes = "1"
async-compression = { version = "0.3", features = ["tokio", "gzip"] }
async-tar = "0.4"
tokio-util = { version = "0.7", features = ["io"] }
[dev-dependencies]
mktemp = "0.5"