2021-07-12 23:14:39 +03:00
|
|
|
[package]
|
2022-09-30 22:50:55 +03:00
|
|
|
authors = ["Nathan Sobo <nathan@zed.dev>"]
|
2022-04-09 17:30:42 +03:00
|
|
|
default-run = "collab"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2022-04-09 17:30:42 +03:00
|
|
|
name = "collab"
|
2023-05-19 00:58:57 +03:00
|
|
|
version = "0.12.4"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2021-07-12 23:14:39 +03:00
|
|
|
|
2021-09-16 17:23:20 +03:00
|
|
|
[[bin]]
|
2022-04-09 17:30:42 +03:00
|
|
|
name = "collab"
|
2021-09-16 17:23:20 +03:00
|
|
|
|
2021-09-02 17:05:34 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "seed"
|
|
|
|
required-features = ["seed-support"]
|
|
|
|
|
2021-07-12 23:14:39 +03:00
|
|
|
[dependencies]
|
2021-11-30 02:22:45 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-10-17 13:20:55 +03:00
|
|
|
live_kit_server = { path = "../live_kit_server" }
|
2021-10-05 01:36:52 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2022-04-11 18:38:17 +03:00
|
|
|
util = { path = "../util" }
|
2022-10-17 13:20:55 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2022-01-04 02:20:40 +03:00
|
|
|
async-tungstenite = "0.16"
|
2022-04-26 20:15:41 +03:00
|
|
|
axum = { version = "0.5", features = ["json", "headers", "ws"] }
|
2022-05-26 10:34:39 +03:00
|
|
|
axum-extra = { version = "0.3", features = ["erased-json"] }
|
2021-07-12 23:14:39 +03:00
|
|
|
base64 = "0.13"
|
2022-05-10 18:19:39 +03:00
|
|
|
clap = { version = "3.1", features = ["derive"], optional = true }
|
2022-11-28 19:00:47 +03:00
|
|
|
dashmap = "5.4"
|
2021-07-12 23:14:39 +03:00
|
|
|
envy = "0.4.2"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2022-05-19 20:55:55 +03:00
|
|
|
hyper = "0.14"
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
2021-09-02 17:05:34 +03:00
|
|
|
lipsum = { version = "0.8", optional = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2022-05-18 18:56:37 +03:00
|
|
|
nanoid = "0.4"
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
2022-06-10 23:32:56 +03:00
|
|
|
prometheus = "0.13"
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2022-05-10 18:19:39 +03:00
|
|
|
reqwest = { version = "0.11", features = ["json"], optional = true }
|
2021-07-12 23:14:39 +03:00
|
|
|
scrypt = "0.7"
|
2022-12-05 19:57:10 +03:00
|
|
|
# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
|
|
|
|
sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
|
2022-12-01 16:40:37 +03:00
|
|
|
sea-query = "0.27"
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2021-07-12 23:14:39 +03:00
|
|
|
sha-1 = "0.9"
|
2022-11-29 21:20:11 +03:00
|
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
time.workspace = true
|
2022-04-22 22:33:19 +03:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-tungstenite = "0.17"
|
2022-04-22 20:55:10 +03:00
|
|
|
tonic = "0.6"
|
2022-04-25 03:02:14 +03:00
|
|
|
tower = "0.4"
|
2023-05-17 03:45:04 +03:00
|
|
|
toml.workspace = true
|
2022-05-12 18:58:17 +03:00
|
|
|
tracing = "0.1.34"
|
|
|
|
tracing-log = "0.1.3"
|
2022-05-17 18:11:43 +03:00
|
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
|
2021-07-12 23:14:39 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-30 02:22:45 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-02-17 17:16:51 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-09-29 18:24:31 +03:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
2022-03-01 23:09:35 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-10-13 01:48:19 +03:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
|
|
git = { path = "../git", features = ["test-support"] }
|
2022-10-19 17:35:34 +03:00
|
|
|
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
2022-03-01 23:09:35 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2022-12-07 01:12:12 +03:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-03-01 23:09:35 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-09-22 20:41:51 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2022-04-07 18:29:47 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2022-04-09 01:32:56 +03:00
|
|
|
theme = { path = "../theme" }
|
2022-03-01 23:09:35 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2022-10-19 17:35:34 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-05-23 08:11:22 +03:00
|
|
|
indoc.workspace = true
|
2022-02-08 02:23:35 +03:00
|
|
|
util = { path = "../util" }
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
2022-12-05 19:57:10 +03:00
|
|
|
sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-sqlite"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2022-11-29 15:55:08 +03:00
|
|
|
sqlx = { version = "0.6", features = ["sqlite"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent.workspace = true
|
2021-09-02 17:05:34 +03:00
|
|
|
|
|
|
|
[features]
|
2022-05-10 18:19:39 +03:00
|
|
|
seed-support = ["clap", "lipsum", "reqwest"]
|