mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 21:05:08 +00:00
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 ...
16 lines
254 B
TOML
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
|