2021-02-20 17:02:34 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
name = "gpui"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-02 17:02:09 +00:00
|
|
|
async-task = "4.0.3"
|
2021-02-20 23:05:36 +00:00
|
|
|
ctor = "0.1"
|
2021-03-23 14:15:41 +00:00
|
|
|
etagere = "0.2"
|
2021-05-12 15:05:03 +00:00
|
|
|
gpui_macros = {path = "../gpui_macros"}
|
2021-04-02 18:42:01 +00:00
|
|
|
log = "0.4"
|
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"
|
|
|
|
parking_lot = "0.11.1"
|
2021-02-20 17:02:34 +00:00
|
|
|
pathfinder_color = "0.5"
|
|
|
|
pathfinder_geometry = "0.5"
|
2021-04-20 04:01:54 +00:00
|
|
|
postage = {version = "0.4.1", features = ["futures-traits"]}
|
2021-03-10 04:00:51 +00:00
|
|
|
rand = "0.8.3"
|
2021-03-22 02:54:23 +00:00
|
|
|
replace_with = "0.1.7"
|
2021-04-06 11:44:38 +00:00
|
|
|
resvg = "0.14"
|
2021-04-20 20:51:24 +00:00
|
|
|
scoped-pool = {path = "../scoped_pool"}
|
2021-04-13 17:03:56 +00:00
|
|
|
seahash = "4.1"
|
2021-04-14 01:15:08 +00:00
|
|
|
serde = {version = "1.0.125", features = ["derive"]}
|
2021-04-07 05:50:13 +00:00
|
|
|
serde_json = "1.0.64"
|
2021-05-18 09:31:40 +00:00
|
|
|
smallvec = {version = "1.6", features = ["union"]}
|
2021-02-20 17:02:34 +00:00
|
|
|
smol = "1.2"
|
2021-04-06 11:44:38 +00:00
|
|
|
tiny-skia = "0.5"
|
2021-05-20 23:22:00 +00:00
|
|
|
tree-sitter = "0.19"
|
2021-04-06 11:44:38 +00:00
|
|
|
usvg = "0.14"
|
2021-02-20 17:02:34 +00:00
|
|
|
|
2021-02-20 23:05:36 +00:00
|
|
|
[build-dependencies]
|
|
|
|
bindgen = "0.57"
|
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]
|
2021-04-20 15:34:14 +00:00
|
|
|
env_logger = "0.8"
|
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]
|
|
|
|
anyhow = "1"
|
2021-04-14 14:30:03 +00:00
|
|
|
block = "0.1"
|
2021-02-20 17:02:34 +00:00
|
|
|
cocoa = "0.24"
|
|
|
|
core-foundation = "0.9"
|
2021-03-10 04:00:51 +00:00
|
|
|
core-graphics = "0.22.2"
|
2021-02-20 17:02:34 +00:00
|
|
|
core-text = "19.2"
|
2021-03-10 04:00:51 +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"
|
2021-02-20 17:02:34 +00:00
|
|
|
log = "0.4"
|
2021-03-20 15:38:36 +00:00
|
|
|
metal = "0.21.0"
|
2021-02-20 17:02:34 +00:00
|
|
|
objc = "0.2"
|