2021-07-12 20:14:39 +00:00
|
|
|
[package]
|
2022-09-30 19:50:55 +00:00
|
|
|
authors = ["Nathan Sobo <nathan@zed.dev>"]
|
2022-04-09 14:30:42 +00:00
|
|
|
default-run = "collab"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2022-04-09 14:30:42 +00:00
|
|
|
name = "collab"
|
2022-10-25 00:06:54 +00:00
|
|
|
version = "0.2.0"
|
2021-07-12 20:14:39 +00:00
|
|
|
|
2021-09-16 14:23:20 +00:00
|
|
|
[[bin]]
|
2022-04-09 14:30:42 +00:00
|
|
|
name = "collab"
|
2021-09-16 14:23:20 +00:00
|
|
|
|
2021-09-02 14:05:34 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "seed"
|
|
|
|
required-features = ["seed-support"]
|
|
|
|
|
2021-07-12 20:14:39 +00:00
|
|
|
[dependencies]
|
2021-11-29 23:22:45 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-10-17 10:20:55 +00:00
|
|
|
live_kit_server = { path = "../live_kit_server" }
|
2021-10-04 22:36:52 +00:00
|
|
|
rpc = { path = "../rpc" }
|
2022-04-11 15:38:17 +00:00
|
|
|
util = { path = "../util" }
|
2022-10-17 10:20:55 +00:00
|
|
|
|
2021-07-12 20:14:39 +00:00
|
|
|
anyhow = "1.0.40"
|
|
|
|
async-trait = "0.1.50"
|
2022-01-03 23:20:40 +00:00
|
|
|
async-tungstenite = "0.16"
|
2022-04-26 17:15:41 +00:00
|
|
|
axum = { version = "0.5", features = ["json", "headers", "ws"] }
|
2022-05-26 07:34:39 +00:00
|
|
|
axum-extra = { version = "0.3", features = ["erased-json"] }
|
2021-07-12 20:14:39 +00:00
|
|
|
base64 = "0.13"
|
2022-05-10 15:19:39 +00:00
|
|
|
clap = { version = "3.1", features = ["derive"], optional = true }
|
2021-07-12 20:14:39 +00:00
|
|
|
envy = "0.4.2"
|
|
|
|
futures = "0.3"
|
2022-05-19 17:55:55 +00:00
|
|
|
hyper = "0.14"
|
2022-04-26 17:15:41 +00:00
|
|
|
lazy_static = "1.4"
|
2021-09-02 14:05:34 +00:00
|
|
|
lipsum = { version = "0.8", optional = true }
|
2022-05-18 15:56:37 +00:00
|
|
|
nanoid = "0.4"
|
2021-07-12 20:14:39 +00:00
|
|
|
parking_lot = "0.11.1"
|
2022-06-10 20:32:56 +00:00
|
|
|
prometheus = "0.13"
|
2021-07-12 20:14:39 +00:00
|
|
|
rand = "0.8"
|
2022-05-10 15:19:39 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"], optional = true }
|
2021-07-12 20:14:39 +00:00
|
|
|
scrypt = "0.7"
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2021-12-21 20:05:32 +00:00
|
|
|
serde_json = "1.0"
|
2021-07-12 20:14:39 +00:00
|
|
|
sha-1 = "0.9"
|
2022-06-21 12:03:10 +00:00
|
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
2022-04-22 19:33:19 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-tungstenite = "0.17"
|
2022-04-22 17:55:10 +00:00
|
|
|
tonic = "0.6"
|
2022-04-25 00:02:14 +00:00
|
|
|
tower = "0.4"
|
2021-07-12 20:14:39 +00:00
|
|
|
toml = "0.5.8"
|
2022-05-12 15:58:17 +00:00
|
|
|
tracing = "0.1.34"
|
|
|
|
tracing-log = "0.1.3"
|
2022-05-17 15:11:43 +00:00
|
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
|
2021-07-12 20:14:39 +00:00
|
|
|
|
|
|
|
[dependencies.sqlx]
|
2022-06-21 12:03:10 +00:00
|
|
|
version = "0.6"
|
2022-04-26 17:47:40 +00:00
|
|
|
features = ["runtime-tokio-rustls", "postgres", "time", "uuid"]
|
2021-07-12 20:14:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-29 23:22:45 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-02-17 14:16:51 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-09-29 15:24:31 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
2022-03-01 20:09:35 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-10-12 22:48:19 +00:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
|
|
git = { path = "../git", features = ["test-support"] }
|
2022-10-19 14:35:34 +00:00
|
|
|
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
2022-03-01 20:09:35 +00:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-09-22 17:41:51 +00:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2022-04-07 15:29:47 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2022-04-08 22:32:56 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-03-01 20:09:35 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2022-10-19 14:35:34 +00:00
|
|
|
|
2022-02-07 22:14:15 +00:00
|
|
|
ctor = "0.1"
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = "0.9"
|
2022-10-19 14:35:34 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2022-02-07 23:23:35 +00:00
|
|
|
util = { path = "../util" }
|
2021-07-12 20:14:39 +00:00
|
|
|
lazy_static = "1.4"
|
2022-05-26 07:34:39 +00:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2022-09-30 19:50:55 +00:00
|
|
|
unindent = "0.1"
|
2021-09-02 14:05:34 +00:00
|
|
|
|
|
|
|
[features]
|
2022-05-10 15:19:39 +00:00
|
|
|
seed-support = ["clap", "lipsum", "reqwest"]
|