jackdaw_runtime 0.4.1

Runtime scene loader for the Jackdaw editor
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"
name = "jackdaw_runtime"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime scene loader for the Jackdaw editor"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/jbuehler23/jackdaw"

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

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

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

[dependencies.bevy]
version = "0.18"
features = [
    "experimental_bevy_feathers",
    "serialize",
    "debug",
    "bevy_remote",
    "file_watcher",
    "reflect_documentation",
]

[dependencies.jackdaw_geometry]
version = "0.4.1"

[dependencies.jackdaw_jsn]
version = "0.4.1"

[dependencies.serde]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
disallowed_methods = "warn"
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
needless_lifetimes = "allow"
nonstandard_macro_braces = "warn"
print_stderr = "warn"
print_stdout = "warn"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
too_long_first_doc_paragraph = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unwrap_or_default = "warn"