mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
75 lines
2.0 KiB
TOML
75 lines
2.0 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathan@warp.dev>"]
|
|
default-run = "zed-server"
|
|
edition = "2021"
|
|
name = "zed-server"
|
|
version = "0.1.0"
|
|
|
|
[[bin]]
|
|
name = "zed-server"
|
|
|
|
[[bin]]
|
|
name = "seed"
|
|
required-features = ["seed-support"]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
rpc = { path = "../rpc" }
|
|
anyhow = "1.0.40"
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
async-trait = "0.1.50"
|
|
async-tungstenite = "0.16"
|
|
base64 = "0.13"
|
|
clap = "=3.0.0-beta.2"
|
|
comrak = "0.10"
|
|
either = "1.6"
|
|
envy = "0.4.2"
|
|
futures = "0.3"
|
|
handlebars = "3.5"
|
|
http-auth-basic = "0.1.3"
|
|
jwt-simple = "0.10.0"
|
|
lipsum = { version = "0.8", optional = true }
|
|
oauth2 = { version = "4.0.0", default_features = false }
|
|
oauth2-surf = "0.1.1"
|
|
parking_lot = "0.11.1"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
rand = "0.8"
|
|
rust-embed = { version = "6.3", features = ["include-exclude"] }
|
|
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.async-sqlx-session]
|
|
version = "0.3.0"
|
|
features = ["pg", "rustls"]
|
|
default-features = false
|
|
|
|
[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"] }
|
|
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"]
|