-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
57 lines (55 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
[package]
name = "hyper-jump"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
authors = ["Alexsander Falcucci <alex.falcucci@gmail.com>"]
description = "A generalist all-in-one command-line version manager toolset for Cardano-based projects."
categories = ["command-line-utilities"]
repository = "https://github.com/falcucci/hyper-jump"
keywords = [
"cardano",
"version-manager",
"blockchain",
"node-management",
"cli-tool",
"mithril",
"aiken",
"package-management",
"cross-platform",
"installation",
"switch-versions",
"crypto",
"cryptocurrency",
"development-tools",
]
[dependencies]
clap = { version = "4.5.4", features = ["derive", "env"] }
tokio = { version = "1.37.0", features = ["full"] }
miette = { version = "5.10.0", features = ["fancy"] }
directories = "5.0.1"
tracing = "0.1.40"
tracing-indicatif = "0.3.5"
tracing-subscriber = "0.3.17"
regex = "1.10.5"
semver = "1.0.23"
anyhow = "1.0.86"
reqwest = { version = "0.12.5", features = ["stream", "rustls-tls"] }
indicatif = "0.17.8"
futures-util = { version = "0.3.30", default-features = false }
flate2 = "1.0.30"
tar = "0.4.41"
signal-hook = "0.3.17"
nix = { version = "0.29.0", features = ["signal"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
chrono = { version = "0.4.38", features = ["serde"] }
yansi = "1.0.1"
comfy-table = "7.1.1"
[[bin]]
path = "src/main.rs"
name = "hyper-jump"
plugin = false
proc-macro = false
required-features = []