I can't deserialize SmallVec<[&'static str; 5]>; as the code fails with the following:
error: lifetime may not live long enough
--> .../src/lib.rs:33:5
|
29 | #[derive(Debug, Deserialize)]
| ----------- lifetime `'de` defined here
...
33 | / /// List of locales for the country.
34 | | locales: SmallVec<[&'static str; 5]>,
| |________________________^ requires that `'de` must outlive `'static`
I can't deserialize
SmallVec<[&'static str; 5]>;
as the code fails with the following: