mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
* 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>
27 lines
741 B
TOML
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
|