[package]
edition = "2021"
rust-version = "1.85.0"
name = "esoc-scene"
version = "0.1.0"
authors = ["esoc"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arena scene graph with typed visual marks — shared IR between chart logic and rendering backends"
documentation = "https://docs.rs/esoc-scene"
readme = "README.md"
keywords = [
"scene-graph",
"visualization",
"graphics",
"charting",
"arena",
]
categories = [
"graphics",
"visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Slush97/esolearn"
[lib]
name = "esoc_scene"
path = "src/lib.rs"
[dependencies.esoc-color]
version = "0.1.0"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
many_single_char_names = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "allow"