| 1 | [package] |
| 2 | name = "write16" |
| 3 | version = "1.0.0" |
| 4 | edition = "2021" |
| 5 | description = "A UTF-16 analog of the Write trait" |
| 6 | license = "Apache-2.0 OR MIT" |
| 7 | readme = "README.md" |
| 8 | documentation = "https://docs.rs/write16/" |
| 9 | homepage = "https://docs.rs/write16/" |
| 10 | repository = "https://github.com/hsivonen/write16" |
| 11 | keywords = [ "unicode" , "utf-16" ] |
| 12 | categories = ["text-processing" , "internationalization" ] |
| 13 | |
| 14 | [dependencies] |
| 15 | arrayvec = { version = "0.7.2" , optional = true } |
| 16 | smallvec = { version = "1.9.0" , optional = true } |
| 17 | |
| 18 | [features] |
| 19 | alloc = [] |
| 20 | |