2021-02-20 17:02:34 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2021-02-20 17:02:34 +00:00
|
|
|
name = "gpui"
|
|
|
|
version = "0.1.0"
|
2022-08-25 19:48:10 +00:00
|
|
|
description = "A GPU-accelerated UI framework"
|
2021-02-20 17:02:34 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/gpui.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-09-20 00:34:04 +00:00
|
|
|
[features]
|
2022-03-02 10:02:10 +00:00
|
|
|
test-support = ["backtrace", "dhat", "env_logger", "collections/test-support"]
|
2021-09-20 00:34:04 +00:00
|
|
|
|
2021-02-20 17:02:34 +00:00
|
|
|
[dependencies]
|
2022-01-24 17:45:14 +00:00
|
|
|
collections = { path = "../collections" }
|
2021-10-04 22:36:52 +00:00
|
|
|
gpui_macros = { path = "../gpui_macros" }
|
2022-03-04 21:53:40 +00:00
|
|
|
util = { path = "../util" }
|
2021-10-04 22:36:52 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-04-02 17:02:09 +00:00
|
|
|
async-task = "4.0.3"
|
2022-03-01 16:01:52 +00:00
|
|
|
backtrace = { version = "0.3", optional = true }
|
2021-02-20 23:05:36 +00:00
|
|
|
ctor = "0.1"
|
2022-03-02 10:02:10 +00:00
|
|
|
dhat = { version = "0.3", optional = true }
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = { version = "0.9", optional = true }
|
2021-03-23 14:15:41 +00:00
|
|
|
etagere = "0.2"
|
2021-11-01 18:56:49 +00:00
|
|
|
futures = "0.3"
|
2021-09-14 14:48:44 +00:00
|
|
|
image = "0.23"
|
2022-10-10 21:46:07 +00:00
|
|
|
itertools = "0.10"
|
2021-08-25 08:43:54 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-02-20 23:05:36 +00:00
|
|
|
num_cpus = "1.13"
|
2021-03-10 04:00:51 +00:00
|
|
|
ordered-float = "2.1.1"
|
2021-07-20 18:22:02 +00:00
|
|
|
parking = "2.0.0"
|
2021-03-10 04:00:51 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-02-20 17:02:34 +00:00
|
|
|
pathfinder_color = "0.5"
|
|
|
|
pathfinder_geometry = "0.5"
|
2021-07-12 20:14:39 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2021-03-10 04:00:51 +00:00
|
|
|
rand = "0.8.3"
|
2021-04-06 11:44:38 +00:00
|
|
|
resvg = "0.14"
|
2021-04-13 17:03:56 +00:00
|
|
|
seahash = "4.1"
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-26 07:34:39 +00:00
|
|
|
serde_json = "1.0"
|
2021-07-12 20:14:39 +00:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2021-02-20 17:02:34 +00:00
|
|
|
smol = "1.2"
|
2022-06-21 12:03:10 +00:00
|
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
2021-04-06 11:44:38 +00:00
|
|
|
tiny-skia = "0.5"
|
2021-12-06 05:37:08 +00:00
|
|
|
tree-sitter = "0.20"
|
2021-04-06 11:44:38 +00:00
|
|
|
usvg = "0.14"
|
2021-07-20 18:22:02 +00:00
|
|
|
waker-fn = "1.1.0"
|
2021-02-20 17:02:34 +00:00
|
|
|
|
2021-02-20 23:05:36 +00:00
|
|
|
[build-dependencies]
|
2022-06-03 00:24:57 +00:00
|
|
|
bindgen = "0.59.2"
|
2021-03-10 02:32:51 +00:00
|
|
|
cc = "1.0.67"
|
2021-02-20 23:05:36 +00:00
|
|
|
|
2021-03-24 17:20:25 +00:00
|
|
|
[dev-dependencies]
|
2022-03-01 16:01:52 +00:00
|
|
|
backtrace = "0.3"
|
2022-01-24 17:45:14 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-03-02 10:02:10 +00:00
|
|
|
dhat = "0.3"
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = "0.9"
|
2021-03-24 17:20:25 +00:00
|
|
|
png = "0.16"
|
2021-04-02 18:42:01 +00:00
|
|
|
simplelog = "0.9"
|
2021-03-24 17:20:25 +00:00
|
|
|
|
2021-02-20 17:02:34 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2022-08-31 02:34:59 +00:00
|
|
|
media = { path = "../media" }
|
2021-02-20 17:02:34 +00:00
|
|
|
anyhow = "1"
|
2021-04-14 14:30:03 +00:00
|
|
|
block = "0.1"
|
2021-02-20 17:02:34 +00:00
|
|
|
cocoa = "0.24"
|
2022-04-27 15:58:55 +00:00
|
|
|
core-foundation = "0.9.3"
|
|
|
|
core-graphics = "0.22.3"
|
2021-02-20 17:02:34 +00:00
|
|
|
core-text = "19.2"
|
2021-07-12 20:14:39 +00:00
|
|
|
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1" }
|
2021-03-20 15:38:36 +00:00
|
|
|
foreign-types = "0.3"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-03-20 15:38:36 +00:00
|
|
|
metal = "0.21.0"
|
2021-02-20 17:02:34 +00:00
|
|
|
objc = "0.2"
|