- 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.
28 lines
481 B
TOML
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"]
|