libsplinter-sys 1.1.9

Native FFI bindings to libsplinter, the shared-memory splinter core. Vendored C sources are built from source; no system install required.
Documentation
[package]
name = "libsplinter-sys"
description = "Native FFI bindings to libsplinter, the shared-memory splinter core. Vendored C sources are built from source; no system install required."
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
readme = "README.md"
keywords = ["ffi", "bindings", "splinter", "shared-memory", "ipc"]
categories = ["external-ffi-bindings", "memory-management"]
# Declares the native library this crate provides so Cargo can enforce a single
# version in the dependency graph (the -sys convention).
links = "splinter"
# Only ship what the crate needs to build itself, including the vendored C.
include = [
    "src/**/*.rs",
    "build.rs",
    "csrc/**",
    "README.md",
    "Cargo.toml",
]

[lib]
crate-type = ["rlib"]

[build-dependencies]
bindgen.workspace = true
cc.workspace = true

[dependencies]
libc.workspace = true