[package]
edition = "2024"
name = "rebound-bind"
version = "5.0.0"
build = "build.rs"
links = "rebound"
include = [
"README.md",
"LICENSE",
"Cargo.toml",
"build.rs",
"src/**",
"tests/**",
"rebound/src/**",
"rebound/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level Rust FFI bindings for the REBOUND N-body simulation C library."
homepage = "https://github.com/hannorein/rebound"
documentation = "https://docs.rs/rebound-bind"
readme = "README.md"
keywords = [
"rebound",
"nbody",
"astrodynamics",
"astronomy",
]
categories = [
"science",
"aerospace::simulation",
]
license = "GPL-3.0"
repository = "https://github.com/Cosmic-Stars-Team/rebound-bind"
[features]
avx512 = []
default = []
fftw = []
mpi = []
opengl = []
openmp = []
openmp-clang = ["openmp"]
profiling = []
quadrupole = []
server = []
[lib]
name = "rebound_bind"
path = "src/lib.rs"
[[test]]
name = "basic_ffi"
path = "tests/basic_ffi.rs"
[dependencies]
[build-dependencies.bindgen]
version = "0.72.1"
[build-dependencies.cc]
version = "1"