concinnity-engine 0.19.16

Runtime engine for Concinnity: ECS schedule, graphics, spawn, streaming
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.97"
name = "concinnity-engine"
version = "0.19.16"
authors = ["Grant Wilkes <grant@concinnity.gg>"]
build = "build.rs"
include = [
    "/README.md",
    "/src",
    "/build.rs",
    "/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime engine for Concinnity: ECS schedule, graphics, spawn, streaming"
homepage = "https://concinnity.gg"
readme = "README.md"
keywords = [
    "gamedev",
    "graphics",
    "engine",
    "concinnity",
]
categories = [
    "game-engines",
    "rendering::engine",
]
license = "MIT"
repository = "https://github.com/concinnitygg/concinnity"
resolver = "2"

[features]
alloc-detail = ["concinnity-core/detail"]
default = ["native"]
directx = [
    "dep:concinnity-device",
    "concinnity-device/directx",
]
metal = [
    "dep:concinnity-device",
    "concinnity-device/metal",
]
native = [
    "dep:concinnity-device",
    "concinnity-device/native",
]
vulkan = [
    "dep:concinnity-device",
    "concinnity-device/vulkan",
]

[lib]
name = "concinnity_engine"
path = "src/lib.rs"

[[test]]
name = "crash_report"
path = "tests/crash_report.rs"

[dependencies.ciborium]
version = "0.2"

[dependencies.concinnity-core]
version = "0.19"

[dependencies.concinnity-device]
version = "0.19"
optional = true
default-features = false

[dependencies.concinnity-host]
version = "0.19"

[dependencies.ctrlc]
version = "3.5.2"

[dependencies.gilrs]
version = "0.11.2"

[dependencies.kira]
version = "0.12"

[dependencies.mint]
version = "0.5"

[dependencies.postcard]
version = "1"
features = ["use-std"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]

[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]

[dev-dependencies.tempfile]
version = "3.25.0"

[build-dependencies.concinnity-core]
version = "0.19"

[build-dependencies.concinnity-toolchain]
version = "0.19"

[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies.crash-handler]
version = "0.8"

[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies.minidump-writer]
version = "0.13"

[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10.1"

[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.4"

[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3.2"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
    "Win32_Foundation",
    "Win32_System_ProcessStatus",
    "Win32_System_SystemInformation",
    "Win32_System_Threading",
]

[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"