[package]
edition = "2024"
name = "open-gpui-shared-string"
version = "0.1.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared string type used by Open GPUI."
homepage = "https://github.com/Latias94/open-gpui"
documentation = "https://docs.rs/open-gpui"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Latias94/open-gpui"
resolver = "2"
[lib]
name = "open_gpui_shared_string"
path = "gpui_shared_string.rs"
[dependencies.schemars]
version = "1.0"
features = ["indexmap2"]
[dependencies.serde]
version = "1.0.221"
features = [
"derive",
"rc",
]
[dependencies.smol_str]
version = "0.3.6"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unwrap_used = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(rust_analyzer)"]