-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (41 loc) · 1.27 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
[package]
name = "cargo-v5"
version = "0.8.1"
edition = "2021"
authors = [
"vexide",
"Gavin Niederman <[email protected]>",
"doinkythederp <[email protected]>",
"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 = "0.29.0"
crossterm = "0.28.1"
tui-term = "0.2.0"
[features]
default = ["clap"]
clap = ["dep:clap"]
[[bin]]
name = "cargo-v5"
required-features = ["clap"]