build(deps): bump enum-map from 2.0.0 to 2.0.1

Bumps [enum-map](https://gitlab.com/KonradBorowski/enum-map) from 2.0.0 to 2.0.1.
- [Release notes](https://gitlab.com/KonradBorowski/enum-map/tags)
- [Changelog](https://gitlab.com/KonradBorowski/enum-map/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/KonradBorowski/enum-map/commits/master)

---
updated-dependencies:
- dependency-name: enum-map
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-02-13 13:27:07 +00:00 committed by relrelb
parent 3bef5cadf6
commit 0ba9ed99c2
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@ -1185,18 +1185,18 @@ dependencies = [
[[package]]
name = "enum-map"
version = "2.0.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ec3484df47a85c121b9d8fbf265ca7eedc26a5c4c341db7cf800876201c766f"
checksum = "4daa8ce58bdc96f86eb90b4b8eab8f1e051da02f8c564389ae2b8ce38932f758"
dependencies = [
"enum-map-derive",
]
[[package]]
name = "enum-map-derive"
version = "0.7.0"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8182c0d26a908f001a23adc388fcef7fde884fbaf668874126cd5a3c13ca299e"
checksum = "a63b7a0ddec6f38dcec5e36257750b7a8fcaf4227e12ceb306e341d63634da05"
dependencies = [
"proc-macro2",
"quote",

View File

@ -12,7 +12,7 @@ ruffle_render_common_tess = { path = "../common_tess" }
bytemuck = { version = "1.7.3", features = ["derive"] }
raw-window-handle = "0.4"
clap = { version = "3.0.6", features = ["derive"], optional = true }
enum-map = "2.0.0"
enum-map = "2.0.1"
# desktop
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.futures]