-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (45 loc) · 1.24 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
[package]
name = "crag"
version = "0.4.1"
edition = "2021"
authors = ["mlsvrts <[email protected]>"]
description = "Search from the command line"
readme = "README.md"
repository = "https://github.com/mlsvrts/crag"
license = "MIT"
keywords = ["cli", "google", "search", "productivity"]
categories = ["command-line-utilities", "web-programming"]
[badges]
maintenance = { status = "actively-developed" }
# Library Dependencies:
# Make requests to web APIs
# json: Support decoding json responses via serde_json
[dependencies.ureq]
version = "2.6"
features = ["json"]
# Support storing search source urls as a Url type
[dependencies.url]
version = "2.3"
[lib]
name = "crag"
path = "src/lib.rs"
# CLI Dependencies:
# Generating the command line GUI
# derive: Enables the custom derive macro
# unicode: Support for unicode in arguments
# wrap_help: Wrap help messages based on terminal size
# env: Support parsing unused arguments from environment variables
[dependencies.clap]
version = "4.0"
optional = true
features = ["derive", "unicode", "wrap_help", "env"]
# Support colored terminal output
[dependencies.colored]
optional = true
version = "2"
[features]
cli = ["clap", "colored"]
[[bin]]
name = "crag"
path = "src/main.rs"
required-features = ["cli"]