[package]
edition = "2024"
name = "graphrecords-utils"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance graph-based data records"
readme = "README.md"
license = "MIT"
repository = "https://github.com/medmodels/graphrecords"
resolver = "2"
[lib]
name = "graphrecords_utils"
path = "src/lib.rs"
[dependencies.hashbrown]
version = "0.16.1"
features = [
"serde",
"rayon",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
option_if_let_else = "allow"
similar_names = "allow"
too_many_lines = "allow"
used_underscore_items = "allow"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1