[package]
edition = "2024"
name = "libcanopy"
version = "0.0.5"
authors = ["Luca Vivona"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canopy is a lightweight tree-based data structure for Rust, optimized for reference management using Rc and Weak pointers."
readme = "README.md"
keywords = [
"tree",
"data-structure",
"rc",
"graph",
"canopy",
]
categories = [
"data-structures",
"memory-management",
"algorithms",
]
license = "MIT"
license-file = "LICENCE.md"
repository = "https://github.com/LVivona/canopy"
[features]
default = ["std"]
std = []
[lib]
name = "libcanopy"
path = "src/lib.rs"
[dependencies.rclite]
version = "0.2.4"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]