diff --git a/README.md b/README.md index 6631acd..8d74b6d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Auto generated from the `.xml` files found in `rxml/xml/`, these are taken from The project is split into the subdirectories: * `rxml`: Auto generates the definitions from the `.xml` files in `rxml/xml`. -* `wow_dbc`: Rust library for the DBC reading and writing. [On crates.io](https://crates.io/crates/wow_dbc) and [docs.rs](https://docs.rs/wow_dbc/0.1.0/wow_dbc/). +* `wow_dbc`: Rust library for the DBC reading and writing. [On crates.io](https://crates.io/crates/wow_dbc) and [docs.rs](https://docs.rs/wow_dbc/latest/wow_dbc/). ## License diff --git a/wow_dbc/CHANGELOG.md b/wow_dbc/CHANGELOG.md index 23ac81a..8babf2f 100644 --- a/wow_dbc/CHANGELOG.md +++ b/wow_dbc/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * BREAKING: Changed `Indexable::get` and `Indexable::get_mut` parameters from `&Self::PrimaryKey` to `impl Into`. This is in order to reduce the boilerplate needed for calling the functions with values that aren't from another `wow_dbc` table. This makes it possible to do `table.get(value)` instead of `table.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. ### Deprecated diff --git a/wow_dbc/Cargo.toml b/wow_dbc/Cargo.toml index 6cd299b..ff241b9 100644 --- a/wow_dbc/Cargo.toml +++ b/wow_dbc/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" authors = ["Gtker