[package]
edition = "2021"
rust-version = "1.78"
name = "embree3"
version = "0.4.1"
authors = [
"Will Usher <will@willusher.io>",
"Yang Chen <matthiasychen@gmail.com>",
]
build = "build.rs"
exclude = [
".*",
"*.png",
"examples/*",
"scripts",
"rustfmt.toml",
"tsan-suppressions.txt",
"lsan-suppressions.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings to Embree 3.13.5, Intel's high-performance ray-tracing kernels."
homepage = "https://github.com/matthiascy/embree3"
documentation = "https://docs.rs/embree3/"
readme = "README.md"
keywords = [
"embree",
"ray-tracing",
"graphics",
"bvh",
"ffi",
]
categories = [
"rendering",
"api-bindings",
"external-ffi-bindings",
]
license = "MIT"
repository = "https://github.com/matthiascy/embree3"
[package.metadata.docs.rs]
all-features = true
[features]
log = ["dep:log"]
[lib]
name = "embree3"
path = "src/lib.rs"
[[test]]
name = "arc_scene_concurrent"
path = "tests/arc_scene_concurrent.rs"
[[test]]
name = "buffer_binding"
path = "tests/buffer_binding.rs"
[[test]]
name = "buffer_mapping"
path = "tests/buffer_mapping.rs"
[[test]]
name = "bvh_builder"
path = "tests/bvh_builder.rs"
[[test]]
name = "bvh_builder_validation"
path = "tests/bvh_builder_validation.rs"
[[test]]
name = "callback_binding"
path = "tests/callback_binding.rs"
[[test]]
name = "callback_concurrency"
path = "tests/callback_concurrency.rs"
[[test]]
name = "clone_drop_ownership"
path = "tests/clone_drop_ownership.rs"
[[test]]
name = "collide"
path = "tests/collide.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "concurrent_bounds"
path = "tests/concurrent_bounds.rs"
[[test]]
name = "context_ext_recovery"
path = "tests/context_ext_recovery.rs"
[[test]]
name = "default_error_log"
path = "tests/default_error_log.rs"
[[test]]
name = "default_error_reporter"
path = "tests/default_error_reporter.rs"
[[test]]
name = "device_callback_lifetime"
path = "tests/device_callback_lifetime.rs"
[[test]]
name = "device_get_property"
path = "tests/device_get_property.rs"
[[test]]
name = "filter_closure_lifetime"
path = "tests/filter_closure_lifetime.rs"
[[test]]
name = "filter_unchecked_accessors"
path = "tests/filter_unchecked_accessors.rs"
[[test]]
name = "geometry_typestate"
path = "tests/geometry_typestate.rs"
[[test]]
name = "lane_iter"
path = "tests/lane_iter.rs"
[[test]]
name = "low_getters_setters"
path = "tests/low_getters_setters.rs"
[[test]]
name = "packet_valid_mask"
path = "tests/packet_valid_mask.rs"
[[test]]
name = "point_query_packet"
path = "tests/point_query_packet.rs"
[[test]]
name = "point_query_pointer"
path = "tests/point_query_pointer.rs"
[[test]]
name = "ray_query_ptr"
path = "tests/ray_query_ptr.rs"
[[test]]
name = "user_data_accessors"
path = "tests/user_data_accessors.rs"
[[test]]
name = "user_data_roundtrip"
path = "tests/user_data_roundtrip.rs"
[[test]]
name = "user_geometry_filter"
path = "tests/user_geometry_filter.rs"
[[bench]]
name = "bvh_traversal"
path = "benches/bvh_traversal.rs"
harness = false
[[bench]]
name = "callback_throughput"
path = "benches/callback_throughput.rs"
harness = false
[[bench]]
name = "lane_iter_throughput"
path = "benches/lane_iter_throughput.rs"
harness = false
[dependencies.log]
version = "0.4"
optional = true
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.trybuild]
version = "1.0"
[lints.clippy]
incompatible_msrv = "warn"