- 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.
25 lines
426 B
TOML
25 lines
426 B
TOML
[package]
|
|
name = "watch"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/watch.rs"
|
|
doctest = true
|
|
|
|
[dependencies]
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
futures.workspace = true
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
log.workspace = true
|
|
rand.workspace = true
|