-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
56 lines (47 loc) · 1.58 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
[package]
name = "cargo-v5"
version = "0.8.2"
edition = "2021"
authors = [
"vexide",
"Gavin Niederman <gavinniederman@gmail.com>",
"doinkythederp <doinkythederp@icloud.com>",
"Tropical"
]
license = "MIT"
description = "A cargo subcommand for managing V5 Brain Rust projects"
repository = "https://github.com/vexide/cargo-pros"
[package.metadata.v5]
icon = "robot"
slot = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cargo-subcommand-metadata = "0.1.0"
cargo_metadata = "0.18.0"
clap = { version = "4.5.20", features = ["derive"], optional = true }
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
fs-err = { version = "3.0.0", features = ["tokio"] }
cfg-if = "1.0.0"
inquire = "0.7.5"
indicatif = "0.17.8"
vex-v5-serial = { version = "0.2.2", default-features = false, features = ["serial"] }
tokio = { version = "1.41.0", features = ["full"] }
miette = { version = "7.2.0", features = ["fancy"] }
thiserror = "1.0.65"
object = { version = "0.36.5", default-features = false, features = ["std", "read_core", "elf"] }
ratatui = { version = "0.29.0", optional = true }
crossterm = { version = "0.28.1", optional = true }
tui-term = { version = "0.2.0", optional = true }
reqwest = { version = "0.12.9", optional = true }
flate2 = "1.0.34"
tar = "0.4.26"
[features]
default = ["clap"]
clap = ["dep:clap"]
field-control = ["dep:ratatui", "dep:crossterm", "dep:tui-term"]
fetch-template = ["dep:reqwest"]
full = ["field-control", "fetch-template"]
[[bin]]
name = "cargo-v5"
required-features = ["clap"]