Cargo.toml

  1[package]
  2authors = ["Nathan Sobo <nathan@zed.dev>"]
  3default-run = "collab2"
  4edition = "2021"
  5name = "collab2"
  6version = "0.28.0"
  7publish = false
  8
  9[[bin]]
 10name = "collab2"
 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 = { package = "text2", path = "../text2" }
 21rpc = { package = "rpc2", path = "../rpc2" }
 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 = { package = "audio2", path = "../audio2" }
 64collections = { path = "../collections", features = ["test-support"] }
 65gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
 66call = { package = "call2", path = "../call2", features = ["test-support"] }
 67client = { package = "client2", path = "../client2", features = ["test-support"] }
 68channel = { package = "channel2", path = "../channel2" }
 69editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
 70language = { package = "language2", path = "../language2", features = ["test-support"] }
 71fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
 72git = { package = "git3", path = "../git3", features = ["test-support"] }
 73live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2", features = ["test-support"] }
 74lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
 75
 76node_runtime = { path = "../node_runtime" }
 77#todo!(notifications)
 78#notifications = { path = "../notifications", features = ["test-support"] }
 79
 80project = { package = "project2", path = "../project2", features = ["test-support"] }
 81rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
 82settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
 83theme = { package = "theme2", path = "../theme2" }
 84workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
 85
 86collab_ui = { path = "../collab_ui", features = ["test-support"] }
 87
 88async-trait.workspace = true
 89pretty_assertions.workspace = true
 90ctor.workspace = true
 91env_logger.workspace = true
 92indoc.workspace = true
 93util = { path = "../util" }
 94lazy_static.workspace = true
 95sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
 96serde_json.workspace = true
 97sqlx = { version = "0.7", features = ["sqlite"] }
 98unindent.workspace = true
 99
100[features]
101seed-support = ["clap", "lipsum", "reqwest"]