zed/crates/gpui/Cargo.toml

85 lines
2.2 KiB
TOML
Raw Normal View History

[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
2021-09-20 03:34:04 +03:00
[features]
test-support = ["backtrace", "dhat", "env_logger", "collections/test-support", "util/test-support"]
2021-09-20 03:34:04 +03:00
[dependencies]
2022-01-24 20:45:14 +03:00
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.workspace = true
2023-08-06 21:45:31 +03:00
derive_more.workspace = true
2022-03-02 13:02:10 +03:00
dhat = { version = "0.3", optional = true }
env_logger = { version = "0.9", optional = true }
etagere = "0.2"
futures.workspace = true
2021-09-14 17:48:44 +03:00
image = "0.23"
itertools = "0.10"
lazy_static.workspace = true
log.workspace = true
2021-02-21 02:05:36 +03:00
num_cpus = "1.13"
ordered-float.workspace = true
parking = "2.0.0"
parking_lot.workspace = true
pathfinder_color = "0.5"
pathfinder_geometry = "0.5"
postage.workspace = true
rand.workspace = true
refineable.workspace = true
2021-04-06 14:44:38 +03:00
resvg = "0.14"
schemars = "0.8"
seahash = "4.1"
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
smallvec.workspace = true
smol.workspace = true
2023-08-26 06:41:21 +03:00
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "4fb530bdd71609bb1d3f76c6a8bde1ba82805d5e" }
2023-09-07 00:22:29 +03:00
thiserror.workspace = true
time.workspace = true
2021-04-06 14:44:38 +03:00
tiny-skia = "0.5"
usvg = { version = "0.14", features = [] }
uuid.workspace = true
waker-fn = "1.1.0"
2021-02-21 02:05:36 +03:00
[build-dependencies]
2023-06-05 06:34:22 +03:00
bindgen = "0.65.1"
2021-03-10 05:32:51 +03:00
cc = "1.0.67"
2021-02-21 02:05:36 +03:00
[dev-dependencies]
backtrace = "0.3"
2022-01-24 20:45:14 +03:00
collections = { path = "../collections", features = ["test-support"] }
2022-03-02 13:02:10 +03:00
dhat = "0.3"
env_logger.workspace = true
png = "0.16"
simplelog = "0.9"
2023-09-15 19:24:12 +03:00
util = { path = "../util", features = ["test-support"] }
[target.'cfg(target_os = "macos")'.dependencies]
media = { path = "../media" }
anyhow.workspace = true
block = "0.1"
cocoa = "0.24"
2023-01-25 22:30:03 +03:00
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
metal = "0.21.0"
objc = "0.2"