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