32 lines
743 B
TOML
32 lines
743 B
TOML
[package]
|
|
name = "docs_preprocessor"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
command_palette.workspace = true
|
|
gpui.workspace = true
|
|
# We are specifically pinning this version of mdbook, as later versions introduce issues with double-nested subdirectories.
|
|
# Ask @maxdeviant about this before bumping.
|
|
mdbook = "= 0.4.40"
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
util.workspace = true
|
|
workspace-hack.workspace = true
|
|
zed.workspace = true
|
|
zlog.workspace = true
|
|
task.workspace = true
|
|
theme.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "docs_preprocessor"
|
|
path = "src/main.rs"
|