forked from adrianreber/mirrorlist-server
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
41 lines (36 loc) · 819 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "mirrorlist-server"
version = "3.0.7"
authors = ["Adrian Reber <adrian@lisas.de"]
edition = "2018"
[profile.release]
lto = true
[dependencies]
hyper = { version = "0.14", features = ["server", "http1", "http2", "runtime"] }
log = "0.4"
pretty_env_logger = "0.4"
chrono = "0.4"
protobuf = "2.14.0"
url = "2.3.1"
regex = "1"
ipnet = "2.7.1"
treebitmap = "0.4.0"
maxminddb = "0.23.0"
rand = "0.8"
itertools = "0.10.5"
getopts = "0.2"
diesel = { version = "2.0.4", features = ["postgres"] }
dotenv = "0.15.0"
dns-lookup = "2.0.0"
ipnetwork = "0.20.0"
indicatif = "0.17.3"
console = "0.15.5"
tracing = "0.1.37"
socket2 = "0.5.2"
[dependencies.tokio]
version = "1.24.2"
features = ["macros", "rt-multi-thread"]
[build-dependencies]
protobuf-codegen-pure = "2.14.0"
[dev-dependencies]
tempfile = "3.3.0"