[package]
edition = "2024"
name = "boxddd-sys"
version = "0.2.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = "build.rs"
links = "box3d"
include = [
"Cargo.toml",
"README.md",
"build.rs",
"provider/**",
"src/**",
"tests/**",
"third-party/box3d/README.md",
"third-party/box3d/include/**/*.h",
"third-party/box3d/src/**/*.c",
"third-party/box3d/src/**/*.h",
"third-party/box3d/src/**/*.inl",
"third-party/box3d/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for Box3D built from vendored upstream sources"
homepage = "https://github.com/Latias94/boxddd"
documentation = "https://docs.rs/boxddd-sys"
readme = "README.md"
keywords = [
"box3d",
"physics",
"ffi",
"bindings",
"game",
]
categories = [
"external-ffi-bindings",
"game-engines",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/boxddd"
[package.metadata.docs.rs]
all-features = false
no-default-features = true
features = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
bindgen = ["dep:bindgen"]
build-from-source = []
default = ["build-from-source"]
disable-simd = []
double-precision = []
validate = []
[lib]
name = "boxddd_sys"
path = "src/lib.rs"
[[test]]
name = "layout"
path = "tests/layout.rs"
[build-dependencies.bindgen]
version = "0.72"
optional = true
[build-dependencies.cc]
version = "1"