-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 887 Bytes
/
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
[package]
name = "rox-cli"
authors = ["Thomas La Piana"]
description = "Composable build tool inspired by Make"
version = "0.8.2"
edition = "2021"
repository = "https://github.com/ThomasLaPiana/rox"
license = "MIT OR Apache-2.0"
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[[bin]]
name = "rox"
path = "src/main.rs"
[lib]
name = "rox"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.79"
chrono = "0.4.31"
clap = { version = "4.4.4", features = ["string", "cargo"] }
cli-table = "0.4.7"
colored = "2.0.4"
crossterm = "0.27.0"
git2 = "0.18.1"
octocrab = "0.32.0"
ratatui = "0.25.0"
rayon = "1.8.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_yaml = "0.9.25"
termimad = "0.26.1"
tokio = { version = "1.35.1", features = ["tokio-macros", "full"] }
webbrowser = "0.8.12"
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"