Skip to content

Commit

Permalink
Remove all features from default
Browse files Browse the repository at this point in the history
  • Loading branch information
Gtker committed Oct 16, 2022
1 parent 49e935a commit aac5da7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions wow_dbc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Self::PrimaryKey>`.
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

Expand Down
2 changes: 1 addition & 1 deletion wow_dbc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"
authors = ["Gtker <[email protected]"]

[features]
default = ["vanilla", "tbc", "wrath"]
default = []
vanilla = []
tbc = []
wrath = []
Expand Down

0 comments on commit aac5da7

Please sign in to comment.