forked from pwnwriter/hysp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.24 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
48
[package]
name = "hysp"
version = "0.1.2"
edition = "2021"
authors = [ "PwnWriter < [email protected] >" ]
description = "📦 An independent package manager that every hacker deserves."
readme = "README.md"
repository = "https://github.com/pwnwriter/hysp"
homepage = "https://github.com/pwnwriter/hysp.git"
license = "MIT"
keywords = ["package-manager", "ctf-tool-download", "pentesting", "pkgs"]
categories = ["accessibility", "web-programming", "command-line" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls"] }
spinoff = { version = "0.8.0", features = ["dots", "arc", "line"] }
clap = { version = "4.4.11", features = ["string", "derive"] }
serde = { version = "1.0.193", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }
async-recursion = "1.0.5"
anyhow = "1.0.75"
colored = "2.1.0"
toml = "0.8.8"
columns = "0.1.0"
dirs = "5.0.1"
sha2 = "0.10.8"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false