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