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"
23axum = { version = "0.5", features = ["json", "headers", "ws"] }
24base64 = "0.13"
25envy = "0.4.2"
26env_logger = "0.8"
27futures = "0.3"
28lazy_static = "1.4"
29lipsum = { version = "0.8", optional = true }
30log = { version = "0.4.16", features = ["kv_unstable_serde"] }
31opentelemetry = { version = "0.17", features = ["rt-tokio"] }
32opentelemetry-otlp = { version = "0.10", features = ["tls-roots"] }
33parking_lot = "0.11.1"
34rand = "0.8"
35scrypt = "0.7"
36serde = { version = "1.0", features = ["derive"] }
37serde_json = "1.0"
38sha-1 = "0.9"
39time = "0.2"
40tokio = { version = "1", features = ["full"] }
41tokio-tungstenite = "0.17"
42tonic = "0.6"
43tower = "0.4"
44toml = "0.5.8"
45tracing = "0.1"
46tracing-opentelemetry = "0.17"
47tracing-subscriber = "0.3"
48
49[dependencies.sqlx]
50version = "0.5.2"
51features = ["runtime-tokio-rustls", "postgres", "time", "uuid"]
52
53[dev-dependencies]
54collections = { path = "../collections", features = ["test-support"] }
55gpui = { path = "../gpui", features = ["test-support"] }
56rpc = { path = "../rpc", features = ["test-support"] }
57client = { path = "../client", features = ["test-support"] }
58editor = { path = "../editor", features = ["test-support"] }
59language = { path = "../language", features = ["test-support"] }
60lsp = { path = "../lsp", features = ["test-support"] }
61project = { path = "../project", features = ["test-support"] }
62settings = { path = "../settings", features = ["test-support"] }
63theme = { path = "../theme" }
64workspace = { path = "../workspace", features = ["test-support"] }
65ctor = "0.1"
66env_logger = "0.8"
67util = { path = "../util" }
68lazy_static = "1.4"
69serde_json = { version = "1.0.64", features = ["preserve_order"] }
70
71[features]
72seed-support = ["lipsum"]