[package] name = "project2" version = "0.1.0" edition = "2021" publish = false [lib] path = "src/project2.rs" doctest = false [features] test-support = [ "client/test-support", "db/test-support", "language/test-support", "settings/test-support", "text/test-support", "prettier/test-support", "gpui/test-support", ] [dependencies] text = { package = "text2", path = "../text2" } copilot = { package = "copilot2", path = "../copilot2" } client = { package = "client2", path = "../client2" } clock = { path = "../clock" } collections = { path = "../collections" } db = { package = "db2", path = "../db2" } fs = { package = "fs2", path = "../fs2" } fsevent = { path = "../fsevent" } fuzzy = { package = "fuzzy2", path = "../fuzzy2" } git = { package = "git3", path = "../git3" } gpui = { package = "gpui2", path = "../gpui2" } language = { package = "language2", path = "../language2" } lsp = { package = "lsp2", path = "../lsp2" } node_runtime = { path = "../node_runtime" } prettier = { package = "prettier2", path = "../prettier2" } rpc = { package = "rpc2", path = "../rpc2" } settings = { package = "settings2", path = "../settings2" } sum_tree = { path = "../sum_tree" } terminal = { package = "terminal2", path = "../terminal2" } util = { path = "../util" } aho-corasick = "1.1" anyhow.workspace = true async-trait.workspace = true backtrace = "0.3" futures.workspace = true globset.workspace = true ignore = "0.4" lazy_static.workspace = true log.workspace = true parking_lot.workspace = true postage.workspace = true rand.workspace = true regex.workspace = true schemars.workspace = true serde.workspace = true serde_derive.workspace = true serde_json.workspace = true sha2 = "0.10" similar = "1.3" smol.workspace = true thiserror.workspace = true toml.workspace = true itertools = "0.10" [dev-dependencies] ctor.workspace = true env_logger.workspace = true pretty_assertions.workspace = true client = { package = "client2", path = "../client2", features = ["test-support"] } collections = { path = "../collections", features = ["test-support"] } db = { package = "db2", path = "../db2", features = ["test-support"] } fs = { package = "fs2", path = "../fs2", features = ["test-support"] } gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] } language = { package = "language2", path = "../language2", features = ["test-support"] } lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] } settings = { package = "settings2", path = "../settings2", features = ["test-support"] } prettier = { package = "prettier2", path = "../prettier2", features = ["test-support"] } util = { path = "../util", features = ["test-support"] } rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] } git2.workspace = true tempdir.workspace = true unindent.workspace = true