[package] name = "language" version = "0.1.0" edition = "2021" [lib] path = "src/language.rs" [features] test-support = [ "rand", "collections/test-support", "lsp/test-support", "text/test-support", "tree-sitter-rust", "util/test-support", ] [dependencies] clock = { path = "../clock" } collections = { path = "../collections" } fuzzy = { path = "../fuzzy" } gpui = { path = "../gpui" } lsp = { path = "../lsp" } rpc = { path = "../rpc" } sum_tree = { path = "../sum_tree" } text = { path = "../text" } theme = { path = "../theme" } util = { path = "../util" } anyhow = "1.0.38" async-trait = "0.1" futures = "0.3" lazy_static = "1.4" log = "0.4" parking_lot = "0.11.1" postage = { version = "0.4.1", features = ["futures-traits"] } rand = { version = "0.8.3", optional = true } serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["preserve_order"] } similar = "1.3" smallvec = { version = "1.6", features = ["union"] } smol = "1.2" tree-sitter = "0.20" tree-sitter-rust = { version = "0.20.0", optional = true } [dev-dependencies] collections = { path = "../collections", features = ["test-support"] } gpui = { path = "../gpui", features = ["test-support"] } lsp = { path = "../lsp", features = ["test-support"] } text = { path = "../text", features = ["test-support"] } util = { path = "../util", features = ["test-support"] } ctor = "0.1" env_logger = "0.8" rand = "0.8.3" tree-sitter-rust = "0.20.0" unindent = "0.1.7"