-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
61 lines (49 loc) · 1.21 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
[package]
name = "charcoal-dict"
version = "0.2.8"
edition = "2021"
authors = ["LitiaEeloo <[email protected]>"]
description = "A command line dictionary"
readme = "Readme.md"
homepage = "https://github.com/LighghtEeloo/charcoal"
repository = "https://github.com/LighghtEeloo/charcoal"
license = "MIT"
keywords = ["cli", "search", "translation", "translate"]
categories = ["command-line-utilities"]
[[bin]]
name = "charcoal"
[dependencies]
# error handling
anyhow = "1.0"
# async
tokio = { version = "1", features = ["full"] }
futures = { version = "0.3", features = ["executor"] }
# logging
log = "0.4"
env_logger = "0.11"
# serde
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
bincode = "1.3"
# tar.gz
tar = "0.4"
# cli
clap = { version = "4.0", features = ["derive"] }
colored = "2.0"
which = "6"
# path management
directories = "5.0"
shellexpand = "3.0"
# web
url = "2"
reqwest = { version = "0.12", features = ["json"] }
scraper = "0.19"
# play audio
rodio = { version = "0.17", features = ["symphonia-mp3"] }
# language
whatlang = { version = "0.16", features = ["serde"] }
didyoumean = "1.1"
[build-dependencies]
clap = { version = "4.0", features = ["derive"] }
clap_complete = "4"