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