Cargo.toml

 1[package]
 2name = "gpui2"
 3version = "0.1.0"
 4edition = "2021"
 5authors = ["Nathan Sobo <nathan@zed.dev>"]
 6description = "The next version of Zed's GPU-accelerated UI framework"
 7publish = false
 8
 9[features]
10test-support = ["backtrace", "dhat", "env_logger", "collections/test-support", "util/test-support"]
11
12[lib]
13path = "src/gpui2.rs"
14doctest = false
15
16[dependencies]
17collections = { path = "../collections" }
18gpui_macros = { path = "../gpui_macros" }
19gpui2_macros = { path = "../gpui2_macros" }
20util = { path = "../util" }
21sum_tree = { path = "../sum_tree" }
22sqlez = { path = "../sqlez" }
23async-task = "4.0.3"
24backtrace = { version = "0.3", optional = true }
25ctor.workspace = true
26derive_more.workspace = true
27dhat = { version = "0.3", optional = true }
28env_logger = { version = "0.9", optional = true }
29etagere = "0.2"
30futures.workspace = true
31image = "0.23"
32itertools = "0.10"
33lazy_static.workspace = true
34log.workspace = true
35num_cpus = "1.13"
36ordered-float.workspace = true
37parking = "2.0.0"
38parking_lot.workspace = true
39pathfinder_geometry = "0.5"
40postage.workspace = true
41rand.workspace = true
42refineable.workspace = true
43resvg = "0.14"
44seahash = "4.1"
45serde.workspace = true
46serde_derive.workspace = true
47serde_json.workspace = true
48smallvec.workspace = true
49smol.workspace = true
50taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "4fb530bdd71609bb1d3f76c6a8bde1ba82805d5e" }
51thiserror.workspace = true
52time.workspace = true
53tiny-skia = "0.5"
54usvg = { version = "0.14", features = [] }
55uuid = { version = "1.1.2", features = ["v4"] }
56waker-fn = "1.1.0"
57slotmap = "1.0.6"
58schemars.workspace = true
59plane-split = "0.18.0"
60bitflags = "2.4.0"
61
62[dev-dependencies]
63backtrace = "0.3"
64collections = { path = "../collections", features = ["test-support"] }
65dhat = "0.3"
66env_logger.workspace = true
67png = "0.16"
68simplelog = "0.9"
69util = { path = "../util", features = ["test-support"] }
70
71[build-dependencies]
72bindgen = "0.65.1"
73cbindgen = "0.26.0"
74
75[target.'cfg(target_os = "macos")'.dependencies]
76media = { path = "../media" }
77anyhow.workspace = true
78block = "0.1"
79cocoa = "0.24"
80core-foundation = { version = "0.9.3", features = ["with-uuid"] }
81core-graphics = "0.22.3"
82core-text = "19.2"
83font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "b2f77d56f450338aa4f7dd2f0197d8c9acb0cf18" }
84foreign-types = "0.3"
85log.workspace = true
86metal = "0.21.0"
87objc = "0.2"