roc/crates/docs_cli/Cargo.toml

22 lines
694 B
TOML
Raw Normal View History

2022-05-09 04:59:57 +03:00
[package]
name = "roc_docs_cli"
version = "0.0.1"
2022-05-09 04:59:57 +03:00
license = "UPL-1.0"
authors = ["The Roc Contributors"]
2022-05-16 18:04:17 +03:00
edition = "2021"
2022-05-09 04:59:57 +03:00
# This binary is only used on static build servers, e.g. Netlify.
# Having its own (extremely minimal) CLI means docs can be generated
# on a build server after building this crate from source, without
# having to install non-Rust dependencies (LLVM, Zig, wasm things, etc.)
# It gets called in www/build.sh via `cargo run --bin roc-docs`
2022-05-09 04:59:57 +03:00
[[bin]]
name = "roc-docs"
path = "src/main.rs"
test = false
bench = false
[dependencies]
roc_docs = { path = "../docs" }
clap = { version = "3.1.15", default-features = false, features = ["std", "color", "suggestions", "derive"] }