1[package]
2authors = ["Nathan Sobo <nathan@zed.dev>"]
3default-run = "collab"
4edition = "2021"
5name = "collab"
6version = "0.8.0"
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 = "1.0.40"
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 = "0.3"
31hyper = "0.14"
32lazy_static = "1.4"
33lipsum = { version = "0.8", optional = true }
34nanoid = "0.4"
35parking_lot = "0.11.1"
36prometheus = "0.13"
37rand = "0.8"
38reqwest = { version = "0.11", features = ["json"], optional = true }
39scrypt = "0.7"
40# Remove fork dependency when a version with https://github.com/SeaQL/sea-orm/pull/1283 is released.
41sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls"] }
42sea-query = "0.27"
43serde = { version = "1.0", features = ["derive", "rc"] }
44serde_json = "1.0"
45sha-1 = "0.9"
46sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
47time = { version = "0.3", features = ["serde", "serde-well-known"] }
48tokio = { version = "1", features = ["full"] }
49tokio-tungstenite = "0.17"
50tonic = "0.6"
51tower = "0.4"
52toml = "0.5.8"
53tracing = "0.1.34"
54tracing-log = "0.1.3"
55tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
56
57[dev-dependencies]
58collections = { path = "../collections", features = ["test-support"] }
59gpui = { path = "../gpui", features = ["test-support"] }
60call = { path = "../call", features = ["test-support"] }
61client = { path = "../client", features = ["test-support"] }
62editor = { path = "../editor", features = ["test-support"] }
63language = { path = "../language", features = ["test-support"] }
64fs = { path = "../fs", features = ["test-support"] }
65git = { path = "../git", features = ["test-support"] }
66live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
67lsp = { path = "../lsp", features = ["test-support"] }
68pretty_assertions = "1.3.0"
69project = { path = "../project", features = ["test-support"] }
70rpc = { path = "../rpc", features = ["test-support"] }
71settings = { path = "../settings", features = ["test-support"] }
72theme = { path = "../theme" }
73workspace = { path = "../workspace", features = ["test-support"] }
74
75ctor = "0.1"
76env_logger = "0.9"
77log = { version = "0.4.16", features = ["kv_unstable_serde"] }
78util = { path = "../util" }
79lazy_static = "1.4"
80sea-orm = { git = "https://github.com/zed-industries/sea-orm", rev = "18f4c691085712ad014a51792af75a9044bacee6", features = ["sqlx-sqlite"] }
81serde_json = { version = "1.0", features = ["preserve_order"] }
82sqlx = { version = "0.6", features = ["sqlite"] }
83unindent = "0.1"
84
85[features]
86seed-support = ["clap", "lipsum", "reqwest"]