mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
5941102aac
Release Notes: - N/A Co-authored-by: Niklas <niklas@niklaskorz.de>
95 lines
2.3 KiB
TOML
95 lines
2.3 KiB
TOML
[package]
|
|
name = "gpui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Nathan Sobo <nathan@zed.dev>"]
|
|
description = "Zed's GPU-accelerated UI framework"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[features]
|
|
test-support = [
|
|
"backtrace",
|
|
"dhat",
|
|
"env_logger",
|
|
"collections/test-support",
|
|
"util/test-support",
|
|
]
|
|
runtime_shaders = []
|
|
|
|
[lib]
|
|
path = "src/gpui.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-task = "4.7"
|
|
backtrace = { version = "0.3", optional = true }
|
|
bitflags = "2.4.0"
|
|
collections = { path = "../collections" }
|
|
ctor.workspace = true
|
|
derive_more.workspace = true
|
|
dhat = { version = "0.3", optional = true }
|
|
env_logger = { version = "0.9", optional = true }
|
|
etagere = "0.2"
|
|
futures.workspace = true
|
|
gpui_macros = { path = "../gpui_macros" }
|
|
image = "0.23"
|
|
itertools = "0.10"
|
|
lazy_static.workspace = true
|
|
linkme = "0.3"
|
|
log.workspace = true
|
|
num_cpus = "1.13"
|
|
ordered-float.workspace = true
|
|
parking = "2.0.0"
|
|
parking_lot.workspace = true
|
|
pathfinder_geometry = "0.5"
|
|
postage.workspace = true
|
|
rand.workspace = true
|
|
raw-window-handle = "0.6.0"
|
|
refineable.workspace = true
|
|
resvg = "0.14"
|
|
schemars.workspace = true
|
|
seahash = "4.1"
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
slotmap = "1.0.6"
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
sum_tree = { path = "../sum_tree" }
|
|
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "1876f72bee5e376023eaa518aa7b8a34c769bd1b" }
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
tiny-skia = "0.5"
|
|
usvg = { version = "0.14", features = [] }
|
|
util = { path = "../util" }
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
|
waker-fn = "1.1.0"
|
|
|
|
[dev-dependencies]
|
|
backtrace = "0.3"
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
dhat = "0.3"
|
|
env_logger.workspace = true
|
|
png = "0.16"
|
|
simplelog = "0.9"
|
|
util = { path = "../util", features = ["test-support"] }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.65.1"
|
|
cbindgen = "0.26.0"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
block = "0.1"
|
|
cocoa = "0.25"
|
|
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 = "d97147f" }
|
|
foreign-types = "0.3"
|
|
log.workspace = true
|
|
media = { path = "../media" }
|
|
metal = "0.21.0"
|
|
objc = "0.2"
|