1[package]
2authors = ["Nathan Sobo <nathan@warp.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-io = "1.3"
21async-std = { version = "1.8.0", features = ["attributes"] }
22async-trait = "0.1.50"
23async-tungstenite = "0.16"
24base64 = "0.13"
25envy = "0.4.2"
26futures = "0.3"
27json_env_logger = "0.1"
28lipsum = { version = "0.8", optional = true }
29log = { version = "0.4.16", features = ["kv_unstable_serde"] }
30parking_lot = "0.11.1"
31rand = "0.8"
32scrypt = "0.7"
33serde = { version = "1.0", features = ["derive"] }
34serde_json = "1.0"
35sha-1 = "0.9"
36surf = "2.2.0"
37tide = "0.16.0"
38tide-compress = "0.9.0"
39time = "0.2"
40toml = "0.5.8"
41
42[dependencies.sqlx]
43version = "0.5.2"
44features = ["runtime-async-std-rustls", "postgres", "time", "uuid"]
45
46[dev-dependencies]
47collections = { path = "../collections", features = ["test-support"] }
48gpui = { path = "../gpui", features = ["test-support"] }
49rpc = { path = "../rpc", features = ["test-support"] }
50client = { path = "../client", features = ["test-support"] }
51editor = { path = "../editor", features = ["test-support"] }
52language = { path = "../language", features = ["test-support"] }
53lsp = { path = "../lsp", features = ["test-support"] }
54project = { path = "../project", features = ["test-support"] }
55settings = { path = "../settings", features = ["test-support"] }
56theme = { path = "../theme" }
57workspace = { path = "../workspace", features = ["test-support"] }
58ctor = "0.1"
59env_logger = "0.8"
60util = { path = "../util" }
61lazy_static = "1.4"
62serde_json = { version = "1.0.64", features = ["preserve_order"] }
63
64[features]
65seed-support = ["lipsum"]