[package]
edition = "2024"
rust-version = "1.85"
name = "platform-trees"
version = "0.3.3"
authors = [
"uselesssgoddess",
"Linksplatform Team <linksplatformtechnologies@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Trees methods for linksplatform
"""
homepage = "https://github.com/linksplatform/trees-rs"
readme = "README.md"
keywords = [
"trees",
"linksplatform",
"data-structures",
]
categories = ["data-structures"]
license = "Unlicense"
repository = "https://github.com/linksplatform/trees-rs"
[lib]
name = "platform_trees"
path = "src/lib.rs"
[[test]]
name = "funty_compatibility"
path = "tests/funty_compatibility.rs"
[[test]]
name = "iterative_tree_tests"
path = "tests/iterative_tree_tests.rs"
[[test]]
name = "list_tests"
path = "tests/list_tests.rs"
[[test]]
name = "tree_tests"
path = "tests/tree_tests.rs"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.platform-num]
version = "0.6.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "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]
unsafe_code = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true