Releases: gtker/wow_dbc
Releases · gtker/wow_dbc
v0.2.0
[0.2.0] - 2022-10-25
Added
Hash
,PartialOrd
,Ord
,Default
traits for types that support it.From<{native_ty}
and all integer types with aFrom<{native_ty}>
for primary keys.
Changed
- BREAKING: Changed
Indexable::get
andIndexable::get_mut
parameters from&Self::PrimaryKey
toimpl Into<Self::PrimaryKey>
.
This is in order to reduce the boilerplate needed for calling the functions with values that aren't from anotherwow_dbc
table.
This makes it possible to dotable.get(value)
instead oftable.get(TableKey::new(value))
- BREAKING: Removed all default features. This prevents people from mistakenly not disabling the expansions that they do not need and bloating compile times as well as IDE suggestions.