zed/crates/gpui/Cargo.toml

74 lines
1.9 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"
[lib]
path = "src/gpui.rs"
doctest = false
2021-09-20 03:34:04 +03:00
[features]
2022-03-02 13:02:10 +03:00
test-support = ["backtrace", "dhat", "env_logger", "collections/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" }
async-task = "4.0.3"
backtrace = { version = "0.3", optional = true }
2021-02-21 02:05:36 +03:00
ctor = "0.1"
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 = "0.3"
2021-09-14 17:48:44 +03:00
image = "0.23"
2021-08-25 11:43:54 +03:00
lazy_static = "1.4.0"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
2021-02-21 02:05:36 +03:00
num_cpus = "1.13"
2021-03-10 07:00:51 +03:00
ordered-float = "2.1.1"
parking = "2.0.0"
2021-03-10 07:00:51 +03:00
parking_lot = "0.11.1"
pathfinder_color = "0.5"
pathfinder_geometry = "0.5"
postage = { version = "0.4.1", features = ["futures-traits"] }
2021-03-10 07:00:51 +03:00
rand = "0.8.3"
2021-04-06 14:44:38 +03:00
resvg = "0.14"
seahash = "4.1"
serde = { version = "1.0", features = ["derive", "rc"] }
2022-05-26 10:34:39 +03:00
serde_json = "1.0"
smallvec = { version = "1.6", features = ["union"] }
smol = "1.2"
time = { version = "0.3", features = ["serde", "serde-well-known"] }
2021-04-06 14:44:38 +03:00
tiny-skia = "0.5"
2021-12-06 08:37:08 +03:00
tree-sitter = "0.20"
2021-04-06 14:44:38 +03:00
usvg = "0.14"
waker-fn = "1.1.0"
2021-02-21 02:05:36 +03:00
[build-dependencies]
bindgen = "0.59.2"
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 = "0.9"
png = "0.16"
simplelog = "0.9"
[target.'cfg(target_os = "macos")'.dependencies]
anyhow = "1"
block = "0.1"
cocoa = "0.24"
core-foundation = "0.9.3"
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"