[package]
edition = "2021"
rust-version = "1.96"
name = "bunny-codec"
version = "0.6.0"
authors = ["Bunny contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-copy mesh format adapters for Bunny."
readme = "README.md"
keywords = [
"bunny",
"mesh",
"codec",
"ply",
"obj",
]
categories = [
"encoding",
"graphics",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/flyingrobots/bunny"
[lib]
name = "bunny_codec"
path = "src/lib.rs"
[[test]]
name = "compressed_tests"
path = "tests/compressed_tests.rs"
[[test]]
name = "obj_tests"
path = "tests/obj_tests.rs"
[[test]]
name = "ply_allocation_tests"
path = "tests/ply_allocation_tests.rs"
[[test]]
name = "ply_tests"
path = "tests/ply_tests.rs"
[[test]]
name = "stanford_fixture_tests"
path = "tests/stanford_fixture_tests.rs"
[dependencies.bunny-geom]
version = "0.6.0"
[dependencies.bunny-linalg]
version = "0.6.0"
[dependencies.bunny-mesh]
version = "0.6.0"
[dependencies.bunny-num]
version = "0.6.0"
[dev-dependencies.dhat]
version = "0.3.3"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
[lints.clippy]
missing_errors_doc = "deny"
missing_panics_doc = "deny"
multiple_crate_versions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"
warnings = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1