dirkengine 0.1.0

A pure Rust Vulkan game engine
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.94.0"
name = "dirkengine"
version = "0.1.0"
authors = ["Piquel <contact@piquel.fr>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "dirkengine"
description = "A pure Rust Vulkan game engine"
homepage = "https://piquel.fr"
documentation = "https://docs.rs/dirkengine"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/DirkEngine/DirkEngine"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "-Zunstable-options",
    "--cfg",
    "docsrs",
]

[features]
default = ["editor"]
editor = []

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

[[bin]]
name = "dirkengine"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.dirk_assets]
version = "0.1.0"

[dependencies.dirk_events]
version = "0.1.0"

[dependencies.dirk_platform]
version = "0.1.0"

[dependencies.dirk_player]
version = "0.1.0"

[dependencies.dirk_renderer]
version = "0.1.0"

[dependencies.dirk_threads]
version = "0.1.0"

[dependencies.dirk_universe]
version = "0.1.0"

[dependencies.dirk_utils]
version = "0.1.0"

[dependencies.dirk_world]
version = "0.1.0"

[dependencies.glam]
version = "0.32"

[dependencies.piquel-log]
version = "0.0.5"
features = [
    "log",
    "file",
]

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[build-dependencies.dirk_build]
version = "0.1.0"

[lints.clippy]
pedantic = "warn"
unwrap_used = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"