- Add API documentation links to all Cargo.toml files - Add API documentation links to all crate READMEs - Add API Reference link to main README - Add Hercules CI effect to push docs to gh-pages on main branch
24 lines
867 B
TOML
24 lines
867 B
TOML
[package]
|
|
name = "nix-bindings-flake-sys"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
license = "LGPL-2.1"
|
|
description = "Low-level FFI bindings to Nix flakes"
|
|
repository = "https://github.com/nixops4/nix-bindings-rust"
|
|
documentation = "https://nixops4.github.io/nix-bindings-rust/development/nix_bindings_flake_sys/"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
nix-bindings-util-sys = { path = "../nix-bindings-util-sys", version = "0.2.1" }
|
|
nix-bindings-store-sys = { path = "../nix-bindings-store-sys", version = "0.2.1" }
|
|
nix-bindings-expr-sys = { path = "../nix-bindings-expr-sys", version = "0.2.1" }
|
|
nix-bindings-fetchers-sys = { path = "../nix-bindings-fetchers-sys", version = "0.2.1" }
|
|
nix-bindings-bdwgc-sys = { path = "../nix-bindings-bdwgc-sys", version = "0.2.1" }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.69"
|
|
pkg-config = "0.3"
|