1[package]
2name = "smol_str"
3version = "0.3.2"
4description = "small-string optimized string type with O(1) clone"
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rust-analyzer/smol_str"
7authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>", "Lukas Wirth <lukastw97@gmail.com>"]
8edition = "2021"
9
10[package.metadata.docs.rs]
11rustdoc-args = ["--cfg", "docsrs"]
12all-features = true
13
14[dependencies]
15serde = { version = "1.0", optional = true, default-features = false }
16borsh = { version = "1.4.0", optional = true, default-features = false }
17arbitrary = { version = "1.3", optional = true }
18
19[dev-dependencies]
20proptest = "1.5"
21serde_json = "1.0"
22serde = { version = "1.0", features = ["derive"] }
23
24[features]
25default = ["std"]
26std = ["serde?/std", "borsh?/std"]
27