Fix missing link to smallvec

This commit is contained in:
Nico Burns 2022-05-02 01:03:25 +01:00
parent 75c26a0a16
commit f5c6eb4409

View file

@ -72,8 +72,8 @@
"name": "arrayvec",
"notes": "Arrays that are ONLY stack-allocated with fixed capacity"
}, {
"name": "arrayvec",
"notes": "Arrays that are ONLY stack-allocated with fixed capacity"
"name": "smallvec",
"notes": "Arrays that are stack-allocated with fallback to the heap if the fixed stack capacity is exceeded"
}, {
"name": "tinyvec",
"notes": "Stack allocated arrays in 100% safe Rust code but requires items to implement the Default trait."