[package]
edition = "2024"
rust-version = "1.97"
name = "concinnity-core"
version = "0.19.0"
authors = ["Grant Wilkes <grant@concinnity.gg>"]
build = "build.rs"
include = [
"/README.md",
"/src",
"/tests",
"/build.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime vocabulary for the Concinnity engine: GPU layouts, ECS components, registry, CPU kernels"
homepage = "https://concinnity.gg"
readme = "README.md"
keywords = [
"gamedev",
"graphics",
"ecs",
"concinnity",
]
categories = [
"game-engines",
"no-std",
]
license = "MIT"
repository = "https://github.com/concinnitygg/concinnity"
resolver = "2"
[features]
detail = []
vulkan = []
[lib]
name = "concinnity_core"
path = "src/lib.rs"
[[test]]
name = "no_resolver_installed"
path = "tests/no_resolver_installed.rs"
[dependencies.bytemuck]
version = "1"
features = ["derive"]
default-features = false
[dependencies.fontdue]
version = "0.9"
features = [
"hashbrown",
"simd",
]
default-features = false
[dependencies.hashbrown]
version = "0.15"
[dependencies.libm]
version = "0.2"
[dependencies.postcard]
version = "1"
features = ["alloc"]
default-features = false
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.serde_bytes]
version = "0.11"
features = ["alloc"]
default-features = false
[dependencies.thiserror]
version = "2.0.18"
default-features = false
[dev-dependencies.ciborium]
version = "0.2"
[dev-dependencies.rayon]
version = "1"
[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[build-dependencies.rayon]
version = "1"
[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
dbg_macro = "warn"
empty_enum_variants_with_brackets = "warn"
infinite_loop = "warn"
lossy_float_literal = "warn"
mem_forget = "warn"
mixed_attributes_style = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_self_imports = "warn"
[lints.rust]
future_incompatible = "warn"
missing_docs = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"