Cargo.toml

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