Skip to content

Commit 5f2ec41

Browse files
committed
chore: crate metadata and packaging for the 0.4.0 release
1 parent 8df3fdd commit 5f2ec41

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,24 @@ documentation = "https://docs.rs/embree3/"
1010
repository = "https://github.com/matthiascy/embree3"
1111
readme = "README.md"
1212
license = "MIT"
13-
description = """
14-
A wrapper for the Embree ray tracing kernels.
15-
"""
16-
keywords = ["embree", "ray", "simd", "bvh"]
13+
description = "Safe Rust bindings to Embree 3.13.5, Intel's high-performance ray-tracing kernels."
14+
keywords = ["embree", "ray-tracing", "graphics", "bvh", "ffi"]
15+
categories = ["rendering", "api-bindings", "external-ffi-bindings"]
1716
build = "build.rs"
1817
edition = "2021"
1918

20-
exclude = [".travis.yml", "*.png", ".gitignore", "examples/*"]
19+
# Keep the published crate to the library itself: src/, build.rs, tests, benches,
20+
# README/CHANGELOG/LICENSE. Everything below is local-dev, agent, or CI-only
21+
# tooling that consumers neither need nor should receive.
22+
exclude = [
23+
".*",
24+
"*.png",
25+
"examples/*",
26+
"scripts",
27+
"rustfmt.toml",
28+
"tsan-suppressions.txt",
29+
"lsan-suppressions.txt",
30+
]
2131

2232
[dependencies]
2333
# Optional: when enabled, the default error reporter routes embree's asynchronous

0 commit comments

Comments
 (0)