mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
66 lines
1.8 KiB
TOML
66 lines
1.8 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathan@warp.dev>"]
|
|
default-run = "collab"
|
|
edition = "2021"
|
|
name = "collab"
|
|
version = "0.1.0"
|
|
|
|
[[bin]]
|
|
name = "collab"
|
|
|
|
[[bin]]
|
|
name = "seed"
|
|
required-features = ["seed-support"]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
rpc = { path = "../rpc" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0.40"
|
|
async-io = "1.3"
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
async-trait = "0.1.50"
|
|
async-tungstenite = "0.16"
|
|
base64 = "0.13"
|
|
envy = "0.4.2"
|
|
futures = "0.3"
|
|
json_env_logger = "0.1"
|
|
lipsum = { version = "0.8", optional = true }
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
parking_lot = "0.11.1"
|
|
rand = "0.8"
|
|
scrypt = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha-1 = "0.9"
|
|
surf = "2.2.0"
|
|
tide = "0.16.0"
|
|
tide-compress = "0.9.0"
|
|
time = "0.2"
|
|
toml = "0.5.8"
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.5.2"
|
|
features = ["runtime-async-std-rustls", "postgres", "time", "uuid"]
|
|
|
|
[dev-dependencies]
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
client = { path = "../client", features = ["test-support"] }
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
theme = { path = "../theme" }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
ctor = "0.1"
|
|
env_logger = "0.8"
|
|
util = { path = "../util" }
|
|
lazy_static = "1.4"
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
[features]
|
|
seed-support = ["lipsum"]
|