2021-10-04 22:07:35 +03:00
|
|
|
[package]
|
2021-10-05 02:45:05 +03:00
|
|
|
name = "project"
|
2021-10-04 22:07:35 +03:00
|
|
|
version = "0.1.0"
|
2022-01-23 01:19:14 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2021-10-04 22:07:35 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/project.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-04 22:07:35 +03:00
|
|
|
[features]
|
2022-02-09 02:48:44 +03:00
|
|
|
test-support = [
|
|
|
|
"client/test-support",
|
2022-09-27 01:37:09 +03:00
|
|
|
"db/test-support",
|
2022-02-09 02:48:44 +03:00
|
|
|
"language/test-support",
|
2022-06-09 11:48:06 +03:00
|
|
|
"settings/test-support",
|
2022-02-09 02:48:44 +03:00
|
|
|
"text/test-support",
|
2023-10-11 19:08:35 +03:00
|
|
|
"prettier/test-support",
|
2022-02-09 02:48:44 +03:00
|
|
|
]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-30 22:26:12 +03:00
|
|
|
text = { path = "../text" }
|
2023-04-19 13:19:24 +03:00
|
|
|
copilot = { path = "../copilot" }
|
2021-10-21 17:26:37 +03:00
|
|
|
client = { path = "../client" }
|
2021-10-04 22:07:35 +03:00
|
|
|
clock = { path = "../clock" }
|
2021-12-14 03:35:32 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-09-27 01:37:09 +03:00
|
|
|
db = { path = "../db" }
|
2022-10-12 01:25:54 +03:00
|
|
|
fs = { path = "../fs" }
|
2021-10-04 22:07:35 +03:00
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
2022-09-28 18:43:33 +03:00
|
|
|
git = { path = "../git" }
|
2021-10-04 22:07:35 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language" }
|
2021-10-21 17:26:37 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2023-09-06 17:23:04 +03:00
|
|
|
node_runtime = { path = "../node_runtime" }
|
2023-09-01 18:31:16 +03:00
|
|
|
prettier = { path = "../prettier" }
|
2021-10-21 17:26:37 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2022-04-06 20:20:57 +03:00
|
|
|
settings = { path = "../settings" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2022-12-06 22:28:56 +03:00
|
|
|
terminal = { path = "../terminal" }
|
2021-10-05 01:36:52 +03:00
|
|
|
util = { path = "../util" }
|
2023-04-26 23:23:29 +03:00
|
|
|
|
2023-09-18 18:01:08 +03:00
|
|
|
aho-corasick = "1.1"
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
2022-12-23 17:02:06 +03:00
|
|
|
backtrace = "0.3"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2023-05-19 19:13:31 +03:00
|
|
|
globset.workspace = true
|
2021-10-04 22:07:35 +03:00
|
|
|
ignore = "0.4"
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
regex.workspace = true
|
2023-05-17 03:45:04 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2022-02-22 20:43:16 +03:00
|
|
|
sha2 = "0.10"
|
2022-03-08 21:00:54 +03:00
|
|
|
similar = "1.3"
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
|
|
|
thiserror.workspace = true
|
2023-05-17 03:45:04 +03:00
|
|
|
toml.workspace = true
|
2023-05-07 22:17:26 +03:00
|
|
|
itertools = "0.10"
|
2022-09-26 17:59:51 +03:00
|
|
|
|
2021-10-04 22:07:35 +03:00
|
|
|
[dev-dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-06-30 03:49:42 +03:00
|
|
|
pretty_assertions.workspace = true
|
2021-10-05 03:14:21 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-12-14 03:35:32 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-09-27 01:37:09 +03:00
|
|
|
db = { path = "../db", features = ["test-support"] }
|
2022-10-12 01:25:54 +03:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
2021-10-26 01:28:40 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2021-10-26 01:28:40 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2022-06-09 11:48:06 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2023-10-11 19:08:35 +03:00
|
|
|
prettier = { path = "../prettier", features = ["test-support"] }
|
2021-10-04 22:07:35 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-10-04 22:28:00 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2023-09-19 23:13:47 +03:00
|
|
|
git2.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
tempdir.workspace = true
|
|
|
|
unindent.workspace = true
|