Cargo.toml

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