Deserialize Theme directly into the heap to avoid stack overflow

Co-Authored-By: Julia Risley <julia@zed.dev>
This commit is contained in:
Antonio Scandurra 2023-03-17 15:39:24 +01:00
parent 786d95b8c8
commit 1af8f4be19
32 changed files with 72 additions and 7 deletions

View file

@ -14,7 +14,7 @@ name = "test_app"
[features]
test-support = [
"async-trait",
"async-trait",
"collections/test-support",
"gpui/test-support",
"lazy_static",
@ -63,9 +63,11 @@ lazy_static = "1.4"
objc = "0.2"
parking_lot = "0.11.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
sha2 = "0.10"
simplelog = "0.9"
[build-dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
serde_json = { version = "1.0", features = ["preserve_order"] }