-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 946 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 946 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
[package]
name = "waz"
version = "0.1.6"
edition = "2021"
description = "Warp-style command prediction and command palette for any terminal — ghost-text autosuggestions, AI assistant, and interactive TUI"
license = "MIT"
repository = "https://github.com/codeitlikemiley/waz"
homepage = "https://github.com/codeitlikemiley/waz"
readme = "README.md"
keywords = ["terminal", "command-prediction", "shell", "tui", "ai"]
categories = ["command-line-utilities", "command-line-interface"]
authors = ["Uriah Galang"]
rust-version = "1.70"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5"
chrono = "0.4"
uuid = { version = "1", features = ["v4"] }
ureq = { version = "2", features = ["json"] }
toml = "0.8"
ratatui = "0.29"
crossterm = { version = "0.28", features = ["use-dev-tty"] }
libc = "0.2"