-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
48 lines (44 loc) · 1.43 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
47
48
[package]
name = "intelli-shell"
description = "Like IntelliSense, but for shells"
version = "0.2.7"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["intellisense", "autocomplete", "cli", "shell", "bookmark"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/lasantosr/intelli-shell/"
[[bin]]
name = "intelli-shell"
path = "src/main.rs"
required-features = []
[features]
default = ["tldr"]
tldr = ["dep:git2", "dep:tempfile"]
debug = []
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
crossterm = "0.26"
directories = "5"
indoc = "2"
iter-flow = "0.1"
itertools = "0.10"
once_cell = "1"
parking_lot = "0.12"
ratatui = "0.21"
rayon = "1"
regex = { version = "1" }
rusqlite = { version = "0.29", features = ["bundled", "uuid"] }
rusqlite_migration = "1"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
tempfile = { version = "3", optional = true }
unicode-segmentation = "1"
unidecode = "0.3"
uuid = { version = "1", features = ["serde", "v4"] }
[dependencies.git2]
default-features = false
features = ["https", "vendored-openssl", "vendored-libgit2"]
optional = true
version = "0.17"