[package]
edition = "2021"
rust-version = "1.75"
name = "klayout-core"
version = "0.0.1"
authors = [
"Eugene Hauptmann",
"Nataliya Kosmyna",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core data model for klayout-rs: coordinates, shapes, cells, libraries"
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/MIT-RLX/klayout-rs"
[lib]
name = "klayout_core"
path = "src/lib.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.blake3]
version = "1.5"
[dependencies.dashmap]
version = "6"
[dependencies.parking_lot]
version = "0.12"
[dependencies.smallvec]
version = "1.13"
features = [
"union",
"const_generics",
]
[dependencies.smol_str]
version = "0.3"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
dbg_macro = "deny"
needless_range_loop = "allow"
todo = "deny"
too_many_arguments = "allow"
unimplemented = "deny"
[lints.rust]
warnings = "deny"