forked from panamax-rs/panamax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.12 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "panamax"
version = "1.0.6"
authors = ["k3d3 <[email protected]>"]
description = "Mirror rustup and crates.io repositories, for offline Rust and Cargo usage."
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/panamax-rs/panamax"
repository = "https://github.com/panamax-rs/panamax"
edition = "2021"
[dependencies]
reqwest = { version = "0.11.4", features = ["blocking"] }
indicatif = "0.17.0-rc.10"
structopt = "0.3.23"
toml = "0.5.8"
serde = { version = "1.0.130", features = ["derive"] }
console = "0.14.1"
log = "0.4.14"
env_logger = "0.9.0"
sha2 = "0.9.6"
url = "2.2.2"
glob = "0.3.0"
git2 = "0.14"
serde_json = "1.0.67"
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = ["full"] }
warp = { version = "0.3.1", features = ["tls"] }
askama = "0.10.5"
askama_warp = "0.11.0"
include_dir = "0.6.2"
bytes = "1.1.0"
tokio-stream = "0.1.7"
tokio-util = { version = "0.6.8", features = ["codec"] }
futures-util = "0.3.17"
futures = "0.3.17"
[features]
default = []
# For development purposes, reduce the crate download count
# and only download crates that start with z
dev_reduced_crates = []