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"
|
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",
|
|
|
|
]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-30 22:26:12 +03:00
|
|
|
text = { path = "../text" }
|
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" }
|
2021-10-04 22:07:35 +03:00
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
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" }
|
|
|
|
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" }
|
|
|
|
util = { path = "../util" }
|
2022-02-24 14:33:28 +03:00
|
|
|
aho-corasick = "0.7"
|
2022-05-04 03:55:33 +03:00
|
|
|
anyhow = "1.0.57"
|
2021-10-05 01:36:52 +03:00
|
|
|
async-trait = "0.1"
|
|
|
|
futures = "0.3"
|
2021-10-04 22:07:35 +03:00
|
|
|
ignore = "0.4"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
libc = "0.2"
|
2022-04-08 19:06:51 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-10-04 22:07:35 +03:00
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-06-01 08:49:47 +03:00
|
|
|
pulldown-cmark = { version = "0.9.1", default-features = false }
|
2022-02-22 20:43:16 +03:00
|
|
|
rand = "0.8.3"
|
2022-02-24 14:33:28 +03:00
|
|
|
regex = "1.5"
|
2022-05-31 12:16:32 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-26 10:34:39 +03:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2022-02-22 20:43:16 +03:00
|
|
|
sha2 = "0.10"
|
2022-03-08 21:00:54 +03:00
|
|
|
similar = "1.3"
|
2021-10-04 22:07:35 +03:00
|
|
|
smol = "1.2.5"
|
2022-05-16 20:56:10 +03:00
|
|
|
thiserror = "1.0.29"
|
2021-10-04 22:07:35 +03:00
|
|
|
toml = "0.5"
|
2022-06-03 03:28:28 +03:00
|
|
|
rocksdb = "0.18"
|
2022-09-21 00:50:29 +03:00
|
|
|
git2 = { version = "0.15", default-features = false }
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
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"] }
|
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"] }
|
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"] }
|
2021-10-05 01:36:52 +03:00
|
|
|
tempdir = { version = "0.3.7" }
|
2021-10-26 07:42:30 +03:00
|
|
|
unindent = "0.1.7"
|