[package]
name = "boxdd-sys"
version = "0.1.0"
edition = "2024"
description = "Low-level FFI bindings for Box2D built from upstream via submodule"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/boxdd"
homepage = "https://github.com/Latias94/boxdd"
links = "box2d"
build = "build.rs"
readme = "README.md"
documentation = "https://docs.rs/boxdd-sys"
keywords = ["box2d", "physics", "ffi", "bindings", "game"]
categories = ["external-ffi-bindings", "game-engines"]
include = [
"Cargo.toml",
"README.md",
"build.rs",
"src/**",
"third-party/box2d/include/**/*.h",
"third-party/box2d/src/**/*.c",
"third-party/box2d/src/**/*.h",
"third-party/box2d/LICENSE",
]
[package.metadata.docs.rs]
all-features = false
no-default-features = true
features = []
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["build-from-source"]
build-from-source = []
pkg-config = ["dep:pkg-config"]
simd-avx2 = []
disable-simd = []
validate = []
[build-dependencies]
cc = "1"
bindgen = "0.72"
pkg-config = { version = "0.3", optional = true }
[dependencies]