38 lines
835 B
TOML
38 lines
835 B
TOML
[package]
|
|
name = "nixide-sys"
|
|
description = "Unsafe direct FFI bindings to libnix C API"
|
|
version = "0.1.0"
|
|
readme = "../README.md"
|
|
license = "GPL-3.0"
|
|
repository = "https://codeberg.org/luminary/nixide"
|
|
authors = [
|
|
"_cry64 <them@dobutterfliescry.net>",
|
|
"foxxyora <foxxyora@noreply.codeberg.org>"
|
|
]
|
|
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = [ "x86_64-unknown-linux-gnu" ]
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = ["util"]
|
|
expr = []
|
|
fetchers = []
|
|
flakes = []
|
|
store = []
|
|
util = []
|
|
gc = []
|
|
|
|
[build-dependencies]
|
|
bindgen = { default-features = false, features = [ "logging", "runtime" ], version = "0.72.1" }
|
|
doxygen-bindgen = "0.1.3"
|
|
pkg-config.workspace = true
|
|
cc.workspace = true
|
|
|
|
[dev-dependencies]
|
|
serial_test = "3.4.0"
|