1[package]
2name = "find"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/find.rs"
8
9[dependencies]
10collections = { path = "../collections" }
11editor = { path = "../editor" }
12gpui = { path = "../gpui" }
13theme = { path = "../theme" }
14workspace = { path = "../workspace" }
15aho-corasick = "0.7"
16anyhow = "1.0"
17postage = { version = "0.4.1", features = ["futures-traits"] }
18regex = "1.5"
19smol = { version = "1.2" }
20
21[dev-dependencies]
22editor = { path = "../editor", features = ["test-support"] }
23gpui = { path = "../gpui", features = ["test-support"] }
24workspace = { path = "../workspace", features = ["test-support"] }
25unindent = "0.1"