open-gpui-sum-tree 0.1.0

Concurrency-friendly sum tree data structure used by Open GPUI.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "open-gpui-sum-tree"
version = "0.1.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Concurrency-friendly sum tree data structure used by Open GPUI."
homepage = "https://github.com/Latias94/open-gpui"
documentation = "https://docs.rs/open-gpui"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Latias94/open-gpui"
resolver = "2"

[package.metadata.cargo-machete]
ignored = ["tracing"]

[features]
test-support = ["proptest"]

[lib]
name = "open_gpui_sum_tree"
path = "src/sum_tree.rs"
doctest = false

[dependencies.heapless]
version = "0.9.2"

[dependencies.log]
version = "0.4.16"
features = [
    "kv_unstable_serde",
    "serde",
]

[dependencies.proptest]
version = "=1.10.0"
features = ["attr-macro"]
optional = true

[dependencies.rayon]
version = "1.8"

[dependencies.tracing]
version = "0.1.40"

[dev-dependencies.ctor]
version = "1.0.6"

[dev-dependencies.proptest]
version = "=1.10.0"
features = ["attr-macro"]

[dev-dependencies.rand]
version = "0.9"

[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unwrap_used = "warn"

[lints.rust]
unsafe_op_in_unsafe_fn = "warn"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(rust_analyzer)"]