-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (29 loc) · 1.11 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
[package]
name = "get-blessed"
version = "0.2.1"
edition = "2021"
authors = ["Josue <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/josueBarretogit/get_blessed_rs"
repository = "https://github.com/josueBarretogit/get_blessed_rs"
description = "Terminal tool to get you the best crates for your rust projects with a few keybindings, curated by blessed.rs"
keywords = ["cli", "command-line", "developer-tools"]
categories = ["development-tools", "command-line-interface" , "command-line-utilities"]
license = "MIT"
exclude = [
"public/*"
]
[dependencies]
reqwest = { version = "0.12.4" , features = ["json"]}
ratatui = { version = "0.26.3", features = ["all-widgets", "unstable-widget-ref"] }
color-eyre = "0.6.2"
crossterm = { version = "0.27.0", features = ["event-stream"] }
serde = { version = "1.0.200", features = ["derive"] }
strum = "0.26.2"
strum_macros = "0.26"
open = "5.1.3"
throbber-widgets-tui = "0.5.0"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
crates_io_api = "0.11.0"
type_utilities = { version = "0.1.2", features = ["bool"] }
tui-widget-list = "0.9.0"