Cargo.toml

 1[package]
 2authors = ["Nathan Sobo <nathan@zed.dev>"]
 3default-run = "collab"
 4edition = "2021"
 5name = "collab"
 6version = "0.22.1"
 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
45# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
46sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
47sea-query = "0.27"
48serde.workspace = true
49serde_derive.workspace = true
50serde_json.workspace = true
51sha-1 = "0.9"
52sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
53time.workspace = true
54tokio = { version = "1", features = ["full"] }
55tokio-tungstenite = "0.17"
56tonic = "0.6"
57tower = "0.4"
58toml.workspace = true
59tracing = "0.1.34"
60tracing-log = "0.1.3"
61tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
62
63[dev-dependencies]
64audio = { path = "../audio" }
65collections = { path = "../collections", features = ["test-support"] }
66gpui = { path = "../gpui", features = ["test-support"] }
67call = { path = "../call", features = ["test-support"] }
68client = { path = "../client", features = ["test-support"] }
69channel = { path = "../channel" }
70editor = { path = "../editor", features = ["test-support"] }
71language = { path = "../language", features = ["test-support"] }
72fs = { path = "../fs", features = ["test-support"] }
73git = { path = "../git", features = ["test-support"] }
74live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
75lsp = { path = "../lsp", features = ["test-support"] }
76project = { path = "../project", features = ["test-support"] }
77rpc = { path = "../rpc", features = ["test-support"] }
78settings = { path = "../settings", features = ["test-support"] }
79theme = { path = "../theme" }
80workspace = { path = "../workspace", features = ["test-support"] }
81collab_ui = { path = "../collab_ui", features = ["test-support"] }
82
83async-trait.workspace = true
84pretty_assertions.workspace = true
85ctor.workspace = true
86env_logger.workspace = true
87indoc.workspace = true
88util = { path = "../util" }
89lazy_static.workspace = true
90sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-sqlite"] }
91serde_json.workspace = true
92sqlx = { version = "0.6", features = ["sqlite"] }
93unindent.workspace = true
94
95[features]
96seed-support = ["clap", "lipsum", "reqwest"]