blob: 09d4ab0da8ae2f71632fbd65cae34bf5ffe29f11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "soon"
version = "0.2.0"
edition = "2021"
description = "Predict your next shell command based on history — like shell autocomplete, but MORE stupid"
license = "MIT"
repository = "https://github.com/HsiangNianian/soon"
authors = ["HsiangNianian"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "soon"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
colored = "3.0.0"
counter = "0.7.0"
dirs = "6.0.0"
|