Cargo.toml

 1[package]
 2authors = ["Nathan Sobo <nathan@zed.dev>"]
 3default-run = "collab"
 4edition = "2021"
 5name = "collab"
 6version = "0.15.0"
 7publish = false
 8
 9[[bin]]
10name = "collab"
11
12[[bin]]
13name = "seed"
14required-features = ["seed-support"]
15
16[dependencies]
17audio = { path = "../audio" }
18collections = { path = "../collections" }
19live_kit_server = { path = "../live_kit_server" }
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"
39rand.workspace = true
40reqwest = { version = "0.11", features = ["json"], optional = true }
41scrypt = "0.7"
42# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
43sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
44sea-query = "0.27"
45serde.workspace = true
46serde_derive.workspace = true
47serde_json.workspace = true
48sha-1 = "0.9"
49sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
50time.workspace = true
51tokio = { version = "1", features = ["full"] }
52tokio-tungstenite = "0.17"
53tonic = "0.6"
54tower = "0.4"
55toml.workspace = true
56tracing = "0.1.34"
57tracing-log = "0.1.3"
58tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
59
60[dev-dependencies]
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 = "1.3.0"
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"]