zed/crates/gpui_shared_string/Cargo.toml
Lukas Wirth 58d3a9eef4
gpui_shared_string: Implement SharedString via smol_str (#54649)
This reduces the size of Sharedstring from 32 bytes to 24 while also
allowing for small-string optimization, meaning strings with length < 23
bytes will not actually allocate.

Release Notes:

- N/A or Added/Fixed/Improved ...
2026-04-24 08:58:26 +00:00

16 lines
254 B
TOML

[package]
name = "gpui_shared_string"
version = "0.1.0"
publish.workspace = true
edition.workspace = true
[lib]
path = "gpui_shared_string.rs"
[dependencies]
schemars.workspace = true
serde.workspace = true
smol_str = "0.3.6"
[lints]
workspace = true