roc/crates/docs_cli/Cargo.toml
Anton-4 0e91eca9c8
website has moved to https://github.com/roc-lang/www.roc-lang.org (#8094)
* website has moved to https://github.com/roc-lang/www.roc-lang.org

* CI remove website build

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>

* remove website build script CI

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>

* additional cleanup

---------

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
2025-07-22 18:53:15 +02:00

27 lines
741 B
TOML

[package]
name = "roc_docs_cli"
description = "Provides a binary that is only used for static build servers."
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
# 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.)
# Run with `cargo run --bin roc-docs path/to/main.roc`
[[bin]]
name = "roc-docs"
path = "src/main.rs"
test = false
bench = false
[dependencies]
roc_docs.workspace = true
clap.workspace = true
[target.'cfg(windows)'.dependencies]
libc.workspace = true