-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 914 Bytes
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
[package]
name = "cargo-docset"
authors = ["R.Chavignat <r.chavignat@gmail.com>"]
description = "Generates a Zeal/Dash docset for your rust package."
edition = "2021"
version = "0.3.1"
repository = "https://github.com/Robzz/cargo-docset"
readme = "README.md"
license = "Apache-2.0"
keywords = ["zeal", "dash", "docset", "documentation"]
categories = ["development-tools", "command-line-utilities"]
[badges]
maintenance = { status = "experimental" }
[features]
bundled-sqlite = ["rusqlite/bundled"]
color = ["clap/color", "termcolor", "atty"]
default = ["color"]
[dependencies]
atty = { version = "0.2", optional = true }
cargo_metadata = "0.15"
clap-cargo = { version = "0.10", features = ["cargo_metadata"] }
clap = { version = "4.0", features = ["std", "suggestions", "derive"], default_features = false }
derive_more = "0.99"
rusqlite = "0.28"
snafu = "0.7"
termcolor = { version = "1.1", optional = true }