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"
|
2024-02-01 02:10:19 +00:00
|
|
|
version = "0.44.0"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "AGPL-3.0-or-later"
|
2024-01-23 16:40:30 +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]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-16 02:54:43 +00:00
|
|
|
async-tungstenite = "0.16"
|
2024-02-15 20:53:57 +00:00
|
|
|
aws-config = { version = "1.1.5" }
|
|
|
|
aws-sdk-s3 = { version = "1.15.0" }
|
2024-02-16 02:54:43 +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"
|
2024-01-22 21:11:24 +00:00
|
|
|
chrono.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
clap = { version = "3.1", features = ["derive"], optional = true }
|
2024-02-06 19:41:36 +00:00
|
|
|
clock.workspace = true
|
2024-02-23 16:13:28 +00:00
|
|
|
clickhouse.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2022-11-28 16:00:47 +00:00
|
|
|
dashmap = "5.4"
|
2021-07-12 20:14:39 +00:00
|
|
|
envy = "0.4.2"
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2024-02-23 16:13:28 +00:00
|
|
|
hex.workspace = true
|
2022-05-19 17:55:55 +00:00
|
|
|
hyper = "0.14"
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
2021-09-02 14:05:34 +00:00
|
|
|
lipsum = { version = "0.8", optional = true }
|
2024-02-06 19:41:36 +00:00
|
|
|
live_kit_server.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
2022-05-18 15:56:37 +00:00
|
|
|
nanoid = "0.4"
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
2022-06-10 20:32:56 +00:00
|
|
|
prometheus = "0.13"
|
2023-08-21 19:00:43 +00:00
|
|
|
prost.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
rand.workspace = true
|
2022-05-10 15:19:39 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"], optional = true }
|
2024-02-06 19:41:36 +00:00
|
|
|
rpc.workspace = true
|
2021-07-12 20:14:39 +00:00
|
|
|
scrypt = "0.7"
|
2024-02-16 02:54:43 +00:00
|
|
|
sea-orm = { version = "0.12.x", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
|
2024-02-15 20:53:57 +00:00
|
|
|
semver.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2021-07-12 20:14:39 +00:00
|
|
|
sha-1 = "0.9"
|
2024-02-23 16:13:28 +00:00
|
|
|
sha2.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
smallvec.workspace = true
|
2024-02-16 02:54:43 +00:00
|
|
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
2024-02-23 16:13:28 +00:00
|
|
|
telemetry_events.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
text.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
time.workspace = true
|
2022-04-22 19:33:19 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-tungstenite = "0.17"
|
2024-01-31 02:41:29 +00:00
|
|
|
toml.workspace = true
|
2022-04-22 17:55:10 +00:00
|
|
|
tonic = "0.6"
|
2022-04-25 00:02:14 +00:00
|
|
|
tower = "0.4"
|
2024-02-23 19:50:06 +00:00
|
|
|
tower-http = { workspace = true, features = ["trace"] }
|
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"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2023-10-04 00:39:24 +00:00
|
|
|
uuid.workspace = true
|
2021-07-12 20:14:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
async-trait.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
audio.workspace = true
|
|
|
|
call = { workspace = true, features = ["test-support"] }
|
|
|
|
channel.workspace = true
|
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
collab_ui = { workspace = true, features = ["test-support"] }
|
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
ctor.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
file_finder.workspace = true
|
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
git = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
indoc.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
lazy_static.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
live_kit_client = { workspace = true, features = ["test-support"] }
|
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
|
|
|
menu.workspace = true
|
|
|
|
node_runtime.workspace = true
|
|
|
|
notifications = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
pretty_assertions.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2024-02-16 02:54:43 +00:00
|
|
|
release_channel.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
2023-10-03 19:16:53 +00:00
|
|
|
sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
2023-10-03 19:16:53 +00:00
|
|
|
sqlx = { version = "0.7", features = ["sqlite"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
theme.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
unindent.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|
2021-09-02 14:05:34 +00:00
|
|
|
|
|
|
|
[features]
|
2022-05-10 15:19:39 +00:00
|
|
|
seed-support = ["clap", "lipsum", "reqwest"]
|