| 1 | [package] |
| 2 | name = "smol_str" |
| 3 | version = "0.2.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>" ] |
| 8 | edition = "2018" |
| 9 | |
| 10 | [dependencies] |
| 11 | serde = { version = "1.0.136" , optional = true, default_features = false } |
| 12 | arbitrary = { version = "1.1.0" , optional = true } |
| 13 | |
| 14 | [dev-dependencies] |
| 15 | proptest = "1.0.0" |
| 16 | serde_json = "1.0.79" |
| 17 | serde = { version = "1.0.136" , features = ["derive" ] } |
| 18 | |
| 19 | [features] |
| 20 | default = ["std" ] |
| 21 | std = ["serde?/std" ] |
| 22 | |