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