[package]
edition = "2024"
rust-version = "1.95"
name = "jellyflow-core"
version = "0.2.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Headless graph model, IDs, type descriptors, and interaction policy primitives for Jellyflow."
homepage = "https://github.com/Latias94/jellyflow"
documentation = "https://docs.rs/jellyflow-core"
readme = "README.md"
keywords = [
"graph",
"node-graph",
"flow",
"headless",
]
categories = [
"data-structures",
"gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/jellyflow"
resolver = "2"
[lib]
name = "jellyflow_core"
path = "src/lib.rs"
[[example]]
name = "build_graph"
path = "examples/build_graph.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
"js",
]
[lints.clippy]
doc_lazy_continuation = "allow"
new_without_default = "allow"
too_many_arguments = "allow"
[lints.rust]
dead_code = "allow"