diff --git a/Cargo.lock b/Cargo.lock index bd8bed6..1670b20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1470,6 +1470,19 @@ dependencies = [ "libc", ] +[[package]] +name = "core-graphics" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" +dependencies = [ + "bitflags 2.13.0", + "core-foundation 0.10.0", + "core-graphics-types 0.2.0", + "foreign-types 0.5.0", + "libc", +] + [[package]] name = "core-graphics-helmer-fork" version = "0.24.0" @@ -1541,6 +1554,17 @@ dependencies = [ "libc", ] +[[package]] +name = "core-text" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "333dab512ce710ca2d08574c373d246dbeac8b22769e47da4c0e72730ce442b7" +dependencies = [ + "core-foundation 0.10.0", + "core-graphics 0.25.0", + "foreign-types 0.5.0", +] + [[package]] name = "core-video" version = "0.5.2" @@ -2830,7 +2854,7 @@ dependencies = [ "core-foundation 0.10.0", "core-foundation-sys 0.8.7", "core-graphics 0.24.0", - "core-text", + "core-text 22.0.0", "core-video", "criterion 0.5.1", "ctor", @@ -2930,7 +2954,7 @@ dependencies = [ "anyhow", "core-foundation 0.10.0", "core-graphics 0.24.0", - "core-text", + "core-text 22.0.0", "env_logger", "futures", "gpui", @@ -3054,7 +3078,7 @@ dependencies = [ "block2 0.6.2", "core-foundation 0.10.0", "core-graphics 0.24.0", - "core-text", + "core-text 22.0.0", "criterion 0.8.2", "futures", "gpui", @@ -3340,7 +3364,7 @@ dependencies = [ "core-foundation 0.10.0", "core-foundation-sys 0.8.7", "core-graphics 0.24.0", - "core-text", + "core-text 22.0.0", "core-video", "ctor", "derive_more", @@ -9469,7 +9493,7 @@ dependencies = [ "byteorder", "core-foundation 0.10.0", "core-graphics 0.24.0", - "core-text", + "core-text 21.0.0", "dirs 5.0.1", "dwrote", "float-ord", diff --git a/Cargo.toml b/Cargo.toml index 8148c91..fc5cb61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -220,7 +220,7 @@ rqrr = "0.10.0" block2 = "0.6" core-foundation = "0.10" core-graphics = "0.24" -core-text = "=21.0.0" +core-text = "=22.0.0" font-kit = { package = "zed-font-kit", version = "0.14.1-zed", git = "https://github.com/zed-industries/font-kit", rev = "94b0f28166665e8fd2f53ff6d268a14955c82269", default-features = false, features = ["source"] } objc = "0.2" oslog = "0.2" diff --git a/crates/3rdparties/gpui/Cargo.toml b/crates/3rdparties/gpui/Cargo.toml index 07f3897..55dae71 100644 --- a/crates/3rdparties/gpui/Cargo.toml +++ b/crates/3rdparties/gpui/Cargo.toml @@ -116,7 +116,7 @@ core-foundation = "=0.10.0" core-foundation-sys = "0.8.6" core-graphics = "0.24" core-video = { version = "0.5.2", features = ["metal"] } -core-text = "21" +core-text = "22" font-kit = { package = "zed-font-kit", version = "0.14.1-zed", git = "https://github.com/zed-industries/font-kit", rev = "94b0f28166665e8fd2f53ff6d268a14955c82269", optional = true } foreign-types = "0.5" log = { version = "0.4.16", features = ["kv_unstable_serde", "serde"] } diff --git a/crates/3rdparties/gpui_macos/Cargo.toml b/crates/3rdparties/gpui_macos/Cargo.toml index 041f14e..a7e431d 100644 --- a/crates/3rdparties/gpui_macos/Cargo.toml +++ b/crates/3rdparties/gpui_macos/Cargo.toml @@ -29,7 +29,7 @@ collections = { version = "0.1.0", git = "https://github.com/zed-industries/zed. core-foundation = "=0.10.0" core-foundation-sys = "0.8.6" core-graphics = "0.24" -core-text = "21" +core-text = "22" core-video = { version = "0.5.2", features = ["metal"] } ctor = "1.0.6" derive_more = { version = "2.1.1", features = ["add", "add_assign", "deref", "deref_mut", "display", "from_str", "mul", "mul_assign", "not"] }