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