-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
47 lines (46 loc) · 1.34 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
44
45
46
47
[package]
name = "crates-registry"
version = "0.1.3"
authors = ["Tal Y Roni <[email protected]>"]
edition = "2021"
rust-version = "1.67"
license = "GPL-3.0-or-later"
homepage = "https://github.com/TalRoni/crates-registry"
repository = "https://github.com/TalRoni/crates-registry.git"
readme = "README.md"
description = """
Crates Registry is a tool for serve crates and rustup installation in offline networks.
The project is based on panamax project and cargo-http-registry and use theis code.
"""
include = ["/frontend/build", "/src", "build.rs"]
[dependencies]
anyhow = "1.0"
git2 = { version = "0.17" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
sha2 = { version = "0.10" }
clap = { version = "4.1", features = ["derive"] }
tokio = { version = "1.25", default-features = false, features = ["full"] }
tracing = { version = "0.1", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"ansi",
"env-filter",
"fmt",
] }
warp = "0.3"
reqwest = "0.11"
indicatif = "0.17"
log = "0.4"
futures = "0.3"
thiserror = "1.0"
toml = "0.7"
tar = "0.4"
flate2 = "1.0"
tempfile = { version = "3.1" }
env_logger = "0.10"
bytes = "1.4"
itertools = "0.11"
include_dir = "0.7"
smolset = "1.3"
glob = "0.3"
tokio-stream = { version = "0.1", features = ["net"] }