forked from westandskif/rate-mirrors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 1.06 KB
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 = "rate_mirrors"
version = "0.6.1"
authors = ["Nikita Almakov <nikita.almakov@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3" # An implementation of futures and streams featuring zero allocations, composability, and itera…
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" # A JSON serialization file format
structopt = "0.3" # Parse command line argument by defining a struct.
byte-unit = "4.0.9" # A library for interaction with units of bytes
lazy_static = "1.4.0" # A macro for declaring lazily evaluated statics in Rust.
itertools = "0.10.0" # Extra iterator adaptors, iterator methods, free functions, and macros.
rand = "0.8.2"
openssl = { version = "0.10", features = ["vendored"] }
chrono = "0.4"
nix = "0.20"
regex = "1.5"
url = "2.2"
linkify = "0.7.0"