-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 848 Bytes
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
[package]
name = "rpm"
version = "0.1.0"
edition = "2021"
authors = ["Gus Cavalcante <[email protected]>"]
description = "A fast, secure Node.js package manager written in Rust"
[lib]
name = "rpm"
path = "src/lib.rs"
[[bin]]
name = "rpm"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.36", features = ["full"] }
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-semver = "0.2.1"
reqwest = { version = "0.11", features = ["json", "stream"] }
semver = "1.0"
sha2 = "0.10"
thiserror = "1.0"
anyhow = "1.0"
async-trait = "0.1"
url = "2.5"
tempfile = "3.10"
tar = "0.4"
flate2 = "1.0"
log = "0.4"
env_logger = "0.11"
futures = "0.3"
tokio-util = "0.7"
hex = "0.4"
indicatif = "0.17"
[dev-dependencies]
tempfile = "3.10"
tokio-test = "0.4"
mockall = "0.12"