mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
80 lines
2.0 KiB
TOML
80 lines
2.0 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
|
edition = "2021"
|
|
name = "gpui"
|
|
version = "0.1.0"
|
|
description = "A GPU-accelerated UI framework"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/gpui.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["backtrace", "dhat", "env_logger", "collections/test-support"]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
gpui_macros = { path = "../gpui_macros" }
|
|
util = { path = "../util" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
sqlez = { path = "../sqlez" }
|
|
async-task = "4.0.3"
|
|
backtrace = { version = "0.3", optional = true }
|
|
ctor = "0.1"
|
|
dhat = { version = "0.3", optional = true }
|
|
env_logger = { version = "0.9", optional = true }
|
|
etagere = "0.2"
|
|
futures = "0.3"
|
|
image = "0.23"
|
|
itertools = "0.10"
|
|
lazy_static = "1.4.0"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
num_cpus = "1.13"
|
|
ordered-float = "2.1.1"
|
|
parking = "2.0.0"
|
|
parking_lot = "0.11.1"
|
|
pathfinder_color = "0.5"
|
|
pathfinder_geometry = "0.5"
|
|
postage = { workspace = true }
|
|
rand = "0.8.3"
|
|
resvg = "0.14"
|
|
schemars = "0.8"
|
|
seahash = "4.1"
|
|
serde = { workspace = true }
|
|
serde_derive = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
smol = "1.2"
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
|
tiny-skia = "0.5"
|
|
usvg = "0.14"
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
|
waker-fn = "1.1.0"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.59.2"
|
|
cc = "1.0.67"
|
|
|
|
[dev-dependencies]
|
|
backtrace = "0.3"
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
dhat = "0.3"
|
|
env_logger = "0.9"
|
|
png = "0.16"
|
|
simplelog = "0.9"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
media = { path = "../media" }
|
|
anyhow = "1"
|
|
block = "0.1"
|
|
cocoa = "0.24"
|
|
core-foundation = { version = "0.9.3", features = ["with-uuid"] }
|
|
core-graphics = "0.22.3"
|
|
core-text = "19.2"
|
|
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
|
|
foreign-types = "0.3"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
metal = "0.21.0"
|
|
objc = "0.2"
|