1[package]
2authors = ["Nathan Sobo <nathan@zed.dev>"]
3default-run = "collab"
4edition = "2021"
5name = "collab"
6version = "0.16.0"
7publish = false
8
9[[bin]]
10name = "collab"
11
12[[bin]]
13name = "seed"
14required-features = ["seed-support"]
15
16[dependencies]
17collections = { path = "../collections" }
18live_kit_server = { path = "../live_kit_server" }
19rpc = { path = "../rpc" }
20util = { path = "../util" }
21
22anyhow.workspace = true
23async-tungstenite = "0.16"
24axum = { version = "0.5", features = ["json", "headers", "ws"] }
25axum-extra = { version = "0.3", features = ["erased-json"] }
26base64 = "0.13"
27clap = { version = "3.1", features = ["derive"], optional = true }
28dashmap = "5.4"
29envy = "0.4.2"
30futures.workspace = true
31hyper = "0.14"
32lazy_static.workspace = true
33lipsum = { version = "0.8", optional = true }
34log.workspace = true
35nanoid = "0.4"
36parking_lot.workspace = true
37prometheus = "0.13"
38rand.workspace = true
39reqwest = { version = "0.11", features = ["json"], optional = true }
40scrypt = "0.7"
41# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
42sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
43sea-query = "0.27"
44serde.workspace = true
45serde_derive.workspace = true
46serde_json.workspace = true
47sha-1 = "0.9"
48sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
49time.workspace = true
50tokio = { version = "1", features = ["full"] }
51tokio-tungstenite = "0.17"
52tonic = "0.6"
53tower = "0.4"
54toml.workspace = true
55tracing = "0.1.34"
56tracing-log = "0.1.3"
57tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
58
59[dev-dependencies]
60audio = { path = "../audio" }
61collections = { path = "../collections", features = ["test-support"] }
62gpui = { path = "../gpui", features = ["test-support"] }
63call = { path = "../call", features = ["test-support"] }
64client = { path = "../client", features = ["test-support"] }
65editor = { path = "../editor", features = ["test-support"] }
66language = { path = "../language", features = ["test-support"] }
67fs = { path = "../fs", features = ["test-support"] }
68git = { path = "../git", features = ["test-support"] }
69live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
70lsp = { path = "../lsp", features = ["test-support"] }
71pretty_assertions.workspace = true
72project = { path = "../project", features = ["test-support"] }
73rpc = { path = "../rpc", features = ["test-support"] }
74settings = { path = "../settings", features = ["test-support"] }
75theme = { path = "../theme" }
76workspace = { path = "../workspace", features = ["test-support"] }
77
78ctor.workspace = true
79env_logger.workspace = true
80indoc.workspace = true
81util = { path = "../util" }
82lazy_static.workspace = true
83sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-sqlite"] }
84serde_json.workspace = true
85sqlx = { version = "0.6", features = ["sqlite"] }
86unindent.workspace = true
87
88[features]
89seed-support = ["clap", "lipsum", "reqwest"]