forked from mkb2091/blockconvert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (29 loc) · 983 Bytes
/
Cargo.toml
File metadata and controls
39 lines (29 loc) · 983 Bytes
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
[package]
name = "domain_list_builder"
version = "0.1.0"
authors = ["Alex Williams <hughaw64@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
blockconvert = "^0.5.1"
reqwest = {version = "0.11", default-features = false, features = ["rustls-tls", "json", "brotli", "gzip", "deflate"]}
futures = {version = "0.3"}
tokio = {version = "1", features = ["macros", "rt", "rt-multi-thread", "fs", "io-util", "time", "net", "sync"]}
tokio-stream = {version = "0.1", features = ["fs"]}
rand = "0.8"
serde = {version = "1.0", features = ["derive"]}
lazy_static = "1.4"
tokio-tungstenite = {version = "0.15", features = ["rustls-tls"]}
csv = "1.1"
serde_json = "1.0"
regex = {version = "1.5", features = ["std", "perf"]}
chrono = "0.4"
filetime = "0.2"
clap = "3.0.0-beta.5"
toml = "0.5"
serde_derive = "1.0"
notify = "4.0"
parking_lot = "0.11"
fxhash = "0.2"
[profile.release]
debug = true