Files
oak-gpui/crates/sum_tree/Cargo.toml
T
iamnbutler 478d1652f6 Remove non-Apache licensed crates
- Removed all GPL/AGPL licensed crates (183 crates)
- Kept 19 Apache-licensed crates including gpui and dependencies
- Restored tooling/perf (Apache-licensed, needed by util_macros)
- Removed ztracing/zlog dependencies (GPL) from sum_tree and watch
- Removed Zed-specific infrastructure files (Dockerfiles, compose, etc)
- Removed extensions and most of tooling directory

GPUI and its dependencies now compile successfully.
2025-12-12 14:17:27 -05:00

28 lines
481 B
TOML

[package]
name = "sum_tree"
version = "0.1.0"
edition.workspace = true
publish = false
license = "Apache-2.0"
description = "A sum tree data structure, a concurrency-friendly B-tree"
[lints]
workspace = true
[lib]
path = "src/sum_tree.rs"
doctest = false
[dependencies]
arrayvec = "0.7.1"
rayon.workspace = true
log.workspace = true
tracing.workspace = true
[dev-dependencies]
ctor.workspace = true
rand.workspace = true
[package.metadata.cargo-machete]
ignored = ["tracing"]