This moves some of the changes made in https://github.com/zed-industries/zed/pull/39543 to the `publish_gpui` script. This PR also updates that script to use `gpui_` instead of `zed-` (where possible) Release Notes: - N/A
26 lines
454 B
TOML
26 lines
454 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
|
|
workspace-hack.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
rand.workspace = true
|
|
zlog.workspace = true
|