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" }
19
20anyhow = "1.0.40"
21async-trait = "0.1.50"
22async-tungstenite = "0.16"
23base64 = "0.13"
24envy = "0.4.2"
25env_logger = "0.8"
26futures = "0.3"
27hyper = { version = "0.14", features = ["full"] }
28json_env_logger = "0.1"
29lipsum = { version = "0.8", optional = true }
30log = { version = "0.4.16", features = ["kv_unstable_serde"] }
31parking_lot = "0.11.1"
32rand = "0.8"
33scrypt = "0.7"
34serde = { version = "1.0", features = ["derive"] }
35serde_json = "1.0"
36sha-1 = "0.9"
37tokio = { version = "1", features = ["full"] }
38tokio-tungstenite = "0.17"
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"]