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