-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) 路 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (50 loc) 路 1.32 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
48
49
50
51
52
53
54
55
56
[package]
name = "cargo-docs"
version = "0.1.35"
authors = [
"Btwiuse Arch <btwiuse@gmail.com>",
]
edition = "2021"
description = "A cargo plugin for serving rust and crate doc locally."
documentation = "https://docs.rs/cargo-docs"
repository = "https://github.com/btwiuse/cargo-docs"
readme = "README.md"
categories = ["development-tools::cargo-plugins"]
license = "MIT"
default-run = "cargo-docs"
[lib]
path = "lib.rs"
[[bin]]
name = "cargo-book"
path = "main.rs"
[[bin]]
name = "cargo-docs"
path = "main.rs"
[dependencies]
anyhow = "1.0.102"
bytes = "1"
http-body-util = "0.1"
notify = "6.1.1"
cargo = "0.96.0"
cargo-util = "0.2.28"
dialoguer = "0.12.0"
futures-util = "0.3.32"
clap = { version = "4.6.1", features = ["derive", "env"] }
http = "1.4.0"
hyper = { version = "1.9.0", features = ["full"] }
hyper-staticfile = "0.10.1"
hyper-util = { version = "0.1.20", features = ["full"] }
lg = "0.1.2"
log = "0.4.29"
opener = "0.8.4"
port-selector = "0.1.7"
strum = { version = "0.28.0", features = ["derive"] }
tokio = { version = "1.52.3", features = ["full"] }
[features]
default = ["all-static"]
vendored-openssl = ["cargo/vendored-openssl"]
vendored-libgit2 = ["cargo/vendored-libgit2"]
all-static = ["cargo/all-static"]
[badges]
travis-ci = { repository = "btwiuse/cargo-docs", branch = "master" }
maintenance = { status = "experimental" }