-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 820 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 820 Bytes
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
[package]
name = "nibble-rs"
version = "0.0.6"
edition = "2024"
description = "A tool for glamorous shell scripts. Quick, inline TUI components built with Ratatui—no full-screen takeover, just small bites of interaction. "
authors = ["Vaishnav-Sabari-Girish forgamesonly684@gmail.com"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Vaishnav-Sabari-Girish/nibble"
keywords = ["tui", "ratatui"]
categories = ["command-line-utilities", "text-processing", "development-tools"]
readme = "README.md"
include = [
"src/*",
"Cargo.toml",
"README.md",
"LICENSE*",
]
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.53", features = ["derive"] }
crossterm = "0.29.0"
ratatui = "0.30.0"
serde_json = "1.0.145"
thiserror = "2.0.17"
tui-input = "0.15"
[[bin]]
name = "nibble"
path = "src/main.rs"