-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
64 lines (58 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "hoard-rs"
version = "2.0.0"
edition = "2021"
readme = "README.md"
license = "MIT"
authors = ["Denis Heid"]
description = "hoard - cli command organizer written in Rust"
homepage = "https://hyde46.github.io/hoard/"
repository = "https://github.com/Hyde46/hoard"
[package.metadata.deb]
maintainer = "Denis Heid"
copyright = "2022, Denis Heid"
license-file = ["LICENSE"]
depends = "$auto"
section = "utility"
[package.metadata.rpm]
package = "hoard"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[[bin]]
name = "hoard"
path = "src/main.rs"
[dependencies]
# Command line argument parser
clap = { version = "4.4.8", features = ["derive"] }
# pretty dialogues in terminal
dialoguer = "0.10.3"
termion = "2.0.1"
# Yaml support to save/load command pallettes
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1.0"
serde_with = "1.11.0"
anyhow = "1.0.71"
dirs = "4.0.0"
log = "0.4"
eyre = "0.6"
simple_logger = "4.1.0"
prettytable-rs = "0.10.0"
ratatui = { version = "0.22.0", features = ["termion"] }
chrono = { version = "0.4", features = ["serde"] }
rand = { version = "0.8.4", features = ["std"] }
thiserror = "1.0"
crossbeam-channel = "0.5.8"
tokio = { version = "1.25.0", features = ["full"] }
array_tool = "1.0.3"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
url = { version = "2.4.0" }
console = "0.15.7"
enum-iterator = "1.4.0"
base64 = "0.21.2"
chatgpt_blocking_rs = "0.1.2"
dotenv = "0.15.0"
h2 = "0.3.20"
regex = "1.10.2"
[dev-dependencies]
tempfile = "3.3.0"