-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
29 lines (27 loc) · 1.29 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
[package]
name = "rate_mirrors"
version = "0.19.2"
authors = ["Nikita Almakov <nikita.almakov@gmail.com>"]
edition = "2024"
description = "Everyday-use client-side map-aware mirror ranking tool (Arch Linux; Manjaro; custom ones)"
rust-version = "1.85"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = ["derive"] }
openssl = { version = "0.10", features = ["vendored"] }
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3" # An implementation of futures and streams featuring zero allocations, composability, and itera…
serde_json = "1" # A JSON serialization file format
byte-unit = "5" # A library for interaction with units of bytes
lazy_static = "1" # A macro for declaring lazily evaluated statics in Rust.
itertools = "0.14" # Extra iterator adaptors, iterator methods, free functions, and macros.
ambassador = "0.4" # Deriving the delegating trait implementation via procedural macros.
thiserror = "1"
rand = "0.9"
chrono = "0.4"
nix = { version = "0.29", features = ["user"] }
regex = "1"
url = { version = "2", features = ["serde"] }
select = "0.6"
clap = { version = "4.5.31", features = ["derive", "unstable-doc", "env"] }