Cargo.toml

 1[package]
 2authors = ["Nathan Sobo <nathan@zed.dev>"]
 3default-run = "collab"
 4edition = "2021"
 5name = "collab"
 6version = "0.12.4"
 7publish = false
 8
 9[[bin]]
10name = "collab"
11
12[[bin]]
13name = "seed"
14required-features = ["seed-support"]
15
16[dependencies]
17collections = { path = "../collections" }
18live_kit_server = { path = "../live_kit_server" }
19rpc = { path = "../rpc" }
20util = { path = "../util" }
21
22anyhow.workspace = true
23async-tungstenite = "0.16"
24axum = { version = "0.5", features = ["json", "headers", "ws"] }
25axum-extra = { version = "0.3", features = ["erased-json"] }
26base64 = "0.13"
27clap = { version = "3.1", features = ["derive"], optional = true }
28dashmap = "5.4"
29envy = "0.4.2"
30futures.workspace = true
31hyper = "0.14"
32lazy_static.workspace = true
33lipsum = { version = "0.8", optional = true }
34log.workspace = true
35nanoid = "0.4"
36parking_lot.workspace = true
37prometheus = "0.13"
38rand.workspace = true
39reqwest = { version = "0.11", features = ["json"], optional = true }
40scrypt = "0.7"
41# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
42sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
43sea-query = "0.27"
44serde.workspace = true
45serde_derive.workspace = true
46serde_json.workspace = true
47sha-1 = "0.9"
48sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
49time.workspace = true
50tokio = { version = "1", features = ["full"] }
51tokio-tungstenite = "0.17"
52tonic = "0.6"
53tower = "0.4"
54toml.workspace = true
55tracing = "0.1.34"
56tracing-log = "0.1.3"
57tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
58
59[dev-dependencies]
60collections = { path = "../collections", features = ["test-support"] }
61gpui = { path = "../gpui", features = ["test-support"] }
62call = { path = "../call", features = ["test-support"] }
63client = { path = "../client", features = ["test-support"] }
64editor = { path = "../editor", features = ["test-support"] }
65language = { path = "../language", features = ["test-support"] }
66fs = { path = "../fs", features = ["test-support"] }
67git = { path = "../git", features = ["test-support"] }
68live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
69lsp = { path = "../lsp", features = ["test-support"] }
70pretty_assertions = "1.3.0"
71project = { path = "../project", features = ["test-support"] }
72rpc = { path = "../rpc", features = ["test-support"] }
73settings = { path = "../settings", features = ["test-support"] }
74theme = { path = "../theme" }
75workspace = { path = "../workspace", features = ["test-support"] }
76
77ctor.workspace = true
78env_logger.workspace = true
79indoc.workspace = true
80util = { path = "../util" }
81lazy_static.workspace = true
82sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-sqlite"] }
83serde_json.workspace = true
84sqlx = { version = "0.6", features = ["sqlite"] }
85unindent.workspace = true
86
87[features]
88seed-support = ["clap", "lipsum", "reqwest"]