[package]
edition = "2021"
rust-version = "1.88"
name = "groxide"
version = "0.1.0"
build = false
exclude = [
".github/",
"skills/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Query Rust crate documentation from the terminal"
homepage = "https://github.com/jhartquist/groxide"
readme = "README.md"
keywords = [
"documentation",
"rustdoc",
"cli",
"developer-tools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jhartquist/groxide"
[lib]
name = "groxide"
path = "src/lib.rs"
[[bin]]
name = "grox"
path = "src/main.rs"
[[test]]
name = "cli_errors"
path = "tests/cli_errors.rs"
[[test]]
name = "cli_happy"
path = "tests/cli_happy.rs"
[[test]]
name = "cross_crate"
path = "tests/cross_crate.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[dependencies.cargo_metadata]
version = "0.23"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1.0"
[dependencies.fs4]
version = "0.13"
features = ["sync"]
[dependencies.rmp-serde]
version = "1.3"
[dependencies.rustdoc-types]
version = "0.57"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.ureq]
version = "3"
features = ["json"]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.insta]
version = "1.40"
features = ["filters"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
warnings = "deny"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true