-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (41 loc) · 1.08 KB
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
[package]
name = "groxide"
version = "0.1.0"
edition = "2021"
rust-version = "1.88"
description = "Query Rust crate documentation from the terminal"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jhartquist/groxide"
homepage = "https://github.com/jhartquist/groxide"
keywords = ["documentation", "rustdoc", "cli", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
exclude = [".github/", "skills/"]
[[bin]]
name = "grox"
path = "src/main.rs"
[dependencies]
cargo_metadata = "0.23"
clap = { version = "4.5", features = ["derive"] }
dirs = "6"
flate2 = "1.0"
fs4 = { version = "0.13", features = ["sync"] }
rmp-serde = "1.3"
rustdoc-types = "0.57"
semver = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tar = "0.4"
thiserror = "2"
ureq = { version = "3", features = ["json"] }
[lints.rust]
warnings = "deny"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
[dev-dependencies]
assert_cmd = "2.0"
insta = { version = "1.40", features = ["filters"] }
tempfile = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true