zed/crates/gpui3/Cargo.toml

87 lines
2.2 KiB
TOML
Raw Normal View History

2023-09-19 19:19:22 +00:00
[package]
name = "gpui3"
version = "0.1.0"
edition = "2021"
2023-09-28 03:14:09 +00:00
authors = ["Nathan Sobo <nathan@zed.dev>"]
2023-09-20 02:55:13 +00:00
description = "The next version of Zed's GPU-accelerated UI framework"
publish = false
2023-09-19 19:19:22 +00:00
[features]
2023-09-20 18:03:37 +00:00
test = ["backtrace", "dhat", "env_logger", "collections/test-support"]
2023-09-19 19:19:22 +00:00
[lib]
path = "src/gpui3.rs"
2023-09-20 02:55:13 +00:00
doctest = false
2023-09-19 19:19:22 +00:00
[dependencies]
2023-09-20 02:55:13 +00:00
collections = { path = "../collections" }
gpui_macros = { path = "../gpui_macros" }
gpui3_macros = { path = "../gpui3_macros" }
2023-09-20 02:55:13 +00:00
util = { path = "../util" }
sum_tree = { path = "../sum_tree" }
sqlez = { path = "../sqlez" }
async-task = "4.0.3"
backtrace = { version = "0.3", optional = true }
ctor.workspace = true
2023-09-19 19:19:22 +00:00
derive_more.workspace = true
2023-09-20 02:55:13 +00:00
dhat = { version = "0.3", optional = true }
env_logger = { version = "0.9", optional = true }
etagere = "0.2"
futures.workspace = true
image = "0.23"
itertools = "0.10"
lazy_static.workspace = true
2023-09-19 19:19:22 +00:00
log.workspace = true
2023-09-20 02:55:13 +00:00
num_cpus = "1.13"
ordered-float.workspace = true
parking = "2.0.0"
2023-09-19 19:19:22 +00:00
parking_lot.workspace = true
2023-09-20 16:17:29 +00:00
pathfinder_geometry = "0.5"
2023-09-20 02:55:13 +00:00
postage.workspace = true
rand.workspace = true
refineable.workspace = true
resvg = "0.14"
seahash = "4.1"
2023-09-19 19:19:22 +00:00
serde.workspace = true
2023-09-20 02:55:13 +00:00
serde_derive.workspace = true
serde_json.workspace = true
2023-09-19 19:19:22 +00:00
smallvec.workspace = true
2023-09-20 02:55:13 +00:00
smol.workspace = true
2023-09-19 19:19:22 +00:00
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "4fb530bdd71609bb1d3f76c6a8bde1ba82805d5e" }
2023-09-20 02:55:13 +00:00
thiserror.workspace = true
time.workspace = true
tiny-skia = "0.5"
usvg = { version = "0.14", features = [] }
uuid = { version = "1.1.2", features = ["v4"] }
waker-fn = "1.1.0"
slotmap = "1.0.6"
schemars.workspace = true
plane-split = "0.18.0"
2023-09-27 21:35:46 +00:00
bitflags = "2.4.0"
2023-09-20 02:55:13 +00:00
[dev-dependencies]
backtrace = "0.3"
collections = { path = "../collections", features = ["test-support"] }
dhat = "0.3"
env_logger.workspace = true
png = "0.16"
simplelog = "0.9"
[build-dependencies]
bindgen = "0.65.1"
2023-09-23 15:10:33 +00:00
cbindgen = "0.26.0"
2023-09-20 02:55:13 +00:00
[target.'cfg(target_os = "macos")'.dependencies]
media = { path = "../media" }
anyhow.workspace = true
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 = "b2f77d56f450338aa4f7dd2f0197d8c9acb0cf18" }
foreign-types = "0.3"
log.workspace = true
2023-09-23 15:10:33 +00:00
metal = "0.21.0"
2023-09-20 02:55:13 +00:00
objc = "0.2"