-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.07 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
[package]
name = "cargo-watchdoc"
version = "0.3.7"
edition = "2021"
categories = ["command-line-utilities", "development-tools"]
description = "A CLI to generate and serve your `cargo doc` documentation with hot-reloading during development"
keywords = ["cargo", "watch", "compile", "notify", "docs"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/romnn/cargo-watchdoc"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[features]
default = []
[package.metadata.cargo-feature-combinations]
denylist = ["default"]
[dependencies]
color-eyre = "0"
axum = "0"
cargo-config2 = "0"
cargo_metadata = "0"
clap = { version = "4", features = ["derive"] }
ignore-files = "3"
log = "0"
opener = "0"
unindent = "0"
portpicker = "0"
stderrlog = "0"
tokio = "^1.43"
tower-http = { version = "^0.6", features = ["fs"] }
http-body = "1"
tower-livereload = "0"
# watchexec
watchexec = "5"
watchexec-events = "4"
watchexec-filterer-globset = "6"
watchexec-filterer-ignore = "5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]