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