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