[package]
edition = "2024"
rust-version = "1.95"
name = "hanabi_node_graph"
version = "0.1.0"
build = false
include = [
"src/**/*.rs",
"docs/hanabi-node-graph.png",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE-APACHE2",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable egui node-graph canvas with caller-owned topology and state"
homepage = "https://github.com/djeedai/hanabi-workshop"
documentation = "https://docs.rs/hanabi_node_graph"
readme = "README.md"
keywords = [
"egui",
"node-graph",
"editor",
"graph",
"gui",
]
categories = [
"gui",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/djeedai/hanabi-workshop"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "hanabi_node_graph"
path = "src/lib.rs"
[dependencies.egui]
version = "0.34"
default-features = false
[dependencies.glam]
version = "0.32"
features = ["serde"]
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[lints.clippy]
dbg_macro = "deny"
fallible_impl_from = "deny"
inefficient_to_string = "warn"
large_futures = "warn"
large_types_passed_by_value = "warn"
lossy_float_literal = "warn"
map_err_ignore = "warn"
mutex_atomic = "warn"
rc_buffer = "warn"
redundant_clone = "warn"
rest_pat_in_fully_bound_structs = "warn"
string_add = "warn"
string_to_string = "warn"
todo = "deny"
unimplemented = "deny"
unused_async = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"