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