1[package]
2authors = ["Nathan Sobo <nathan@zed.dev>"]
3default-run = "collab"
4edition = "2021"
5name = "collab"
6version = "0.44.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]
64release_channel = { path = "../release_channel" }
65async-trait.workspace = true
66audio = { path = "../audio" }
67call = { path = "../call", features = ["test-support"] }
68channel = { path = "../channel" }
69client = { path = "../client", features = ["test-support"] }
70collab_ui = { path = "../collab_ui", features = ["test-support"] }
71collections = { path = "../collections", features = ["test-support"] }
72ctor.workspace = true
73editor = { path = "../editor", features = ["test-support"] }
74env_logger.workspace = true
75file_finder = { path = "../file_finder" }
76fs = { path = "../fs", features = ["test-support"] }
77git = { path = "../git", features = ["test-support"] }
78gpui = { path = "../gpui", features = ["test-support"] }
79indoc.workspace = true
80language = { path = "../language", features = ["test-support"] }
81lazy_static.workspace = true
82live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
83lsp = { path = "../lsp", features = ["test-support"] }
84menu = { path = "../menu" }
85node_runtime = { path = "../node_runtime" }
86notifications = { path = "../notifications", features = ["test-support"] }
87pretty_assertions.workspace = true
88project = { path = "../project", features = ["test-support"] }
89rpc = { path = "../rpc", features = ["test-support"] }
90sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
91serde_json.workspace = true
92settings = { path = "../settings", features = ["test-support"] }
93sqlx = { version = "0.7", features = ["sqlite"] }
94theme = { path = "../theme" }
95unindent.workspace = true
96util = { path = "../util" }
97workspace = { path = "../workspace", features = ["test-support"] }
98
99[features]
100seed-support = ["clap", "lipsum", "reqwest"]