roc/crates/docs_cli/Cargo.toml
dependabot[bot] 095505ee15
Bump libc from 0.2.126 to 0.2.132
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.126 to 0.2.132.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.126...0.2.132)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-06 07:27:05 +00:00

25 lines
749 B
TOML

[package]
name = "roc_docs_cli"
version = "0.0.1"
license = "UPL-1.0"
authors = ["The Roc Contributors"]
edition = "2021"
# 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`
[[bin]]
name = "roc-docs"
path = "src/main.rs"
test = false
bench = false
[dependencies]
roc_docs = { path = "../docs" }
clap = { version = "3.2.18", default-features = false, features = ["std", "color", "suggestions", "derive"] }
[target.'cfg(windows)'.dependencies]
libc = "0.2.132"