| 1 | [package] |
| 2 | name = "aligned-vec" |
| 3 | version = "0.5.0" |
| 4 | edition = "2021" |
| 5 | authors = ["sarah <>" ] |
| 6 | description = "Aligned vector and box containers" |
| 7 | readme = "README.md" |
| 8 | repository = "https://github.com/sarah-ek/aligned-vec/" |
| 9 | license = "MIT" |
| 10 | keywords = ["vec" , "allocation" , "box" , "slice" , "alignment" ] |
| 11 | |
| 12 | [dependencies] |
| 13 | serde = { version = "1.0" , optional = true, default-features = false } |
| 14 | |
| 15 | [features] |
| 16 | default = ["std" ] |
| 17 | std = [] |
| 18 | serde = ["dep:serde" ] |
| 19 | |
| 20 | [package.metadata.docs.rs] |
| 21 | all-features = true |
| 22 | rustdoc-args = ["--cfg" , "docsrs" ] |
| 23 | |