mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
2f0212ee98
Also, move the high-level fuzzy mathcing functions in zed::fuzzy into the fuzzy crate so that project can use them. This required defining a 'PathMatchCandidateSet' trait to avoid a circular dependency from fuzzy to worktree. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
40 lines
988 B
TOML
40 lines
988 B
TOML
[package]
|
|
name = "project"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
buffer = { path = "../buffer" }
|
|
clock = { path = "../clock" }
|
|
fsevent = { path = "../fsevent" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
gpui = { path = "../gpui" }
|
|
rpc_client = { path = "../rpc_client" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
util = { path = "../util" }
|
|
rpc = { path = "../rpc" }
|
|
|
|
anyhow = "1.0.38"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
ignore = "0.4"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
parking_lot = "0.11.1"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
smol = "1.2.5"
|
|
toml = "0.5"
|
|
|
|
[dev-dependencies]
|
|
rpc_client = { path = "../rpc_client", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
|
|
rand = "0.8.3"
|
|
tempdir = { version = "0.3.7" }
|