[package]
edition = "2024"
name = "graphforge-core"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphForge core types and traits"
readme = false
license = "Apache-2.0"
license-file = "LICENSE"
repository = "https://github.com/CurateLabs/graphforge"
resolver = "2"
[lib]
name = "graphforge_core"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
package = "serde_yaml_ng"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v5",
"v7",
"serde",
]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unused_must_use = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1