[package]
edition = "2024"
rust-version = "1.95"
name = "osom_lib_strings"
version = "0.1.1"
authors = ["Rafal Szefler <rafael.szefler@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ABI-stable string types and helpers for osom_lib."
homepage = "https://github.com/RafalSzefler/osom_lib"
documentation = "https://docs.rs/osom_lib_strings"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/RafalSzefler/osom_lib"
[features]
default = []
serde = ["dep:serde"]
std = ["osom_lib_alloc/std"]
[lib]
name = "osom_lib_strings"
path = "src/lib.rs"
[[test]]
name = "test_immutable"
path = "tests/test_immutable.rs"
[[test]]
name = "test_serde"
path = "tests/test_serde.rs"
[dependencies.osom_lib_alloc]
version = "0.1"
[dependencies.osom_lib_macros]
version = "0.1"
[dependencies.osom_lib_primitives]
version = "0.1"
[dependencies.osom_lib_reprc]
version = "0.1"
[dependencies.serde]
version = "1"
optional = true
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.serde_json]
version = "1"