2021-05-17 23:07:18 +00:00
|
|
|
[advisories]
|
|
|
|
db-path = "~/.cargo/advisory-db"
|
|
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
|
|
vulnerability = "deny"
|
|
|
|
unmaintained = "deny"
|
|
|
|
yanked = "deny"
|
|
|
|
notice = "deny"
|
|
|
|
ignore = [
|
2022-10-24 21:48:07 +00:00
|
|
|
"RUSTSEC-2020-0056", # from cpal v0.14.1 - unmaintained - https://github.com/koute/stdweb/issues/403
|
2021-05-17 23:07:18 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[licenses]
|
|
|
|
unlicensed = "deny"
|
|
|
|
copyleft = "deny"
|
|
|
|
allow = [
|
|
|
|
"MIT",
|
Migrate to encase from crevice (#4339)
# Objective
- Unify buffer APIs
- Also see #4272
## Solution
- Replace vendored `crevice` with `encase`
---
## Changelog
Changed `StorageBuffer`
Added `DynamicStorageBuffer`
Replaced `UniformVec` with `UniformBuffer`
Replaced `DynamicUniformVec` with `DynamicUniformBuffer`
## Migration Guide
### `StorageBuffer`
removed `set_body()`, `values()`, `values_mut()`, `clear()`, `push()`, `append()`
added `set()`, `get()`, `get_mut()`
### `UniformVec` -> `UniformBuffer`
renamed `uniform_buffer()` to `buffer()`
removed `len()`, `is_empty()`, `capacity()`, `push()`, `reserve()`, `clear()`, `values()`
added `set()`, `get()`
### `DynamicUniformVec` -> `DynamicUniformBuffer`
renamed `uniform_buffer()` to `buffer()`
removed `capacity()`, `reserve()`
Co-authored-by: Carter Anderson <mcanders1@gmail.com>
2022-05-18 21:09:21 +00:00
|
|
|
"MIT-0",
|
2021-05-17 23:07:18 +00:00
|
|
|
"Apache-2.0",
|
|
|
|
"BSD-3-Clause",
|
|
|
|
"ISC",
|
|
|
|
"Zlib",
|
|
|
|
"0BSD",
|
|
|
|
"BSD-2-Clause",
|
|
|
|
"CC0-1.0",
|
|
|
|
]
|
2022-07-17 23:14:38 +00:00
|
|
|
exceptions = [
|
|
|
|
{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] },
|
|
|
|
]
|
2021-05-17 23:07:18 +00:00
|
|
|
default = "deny"
|
|
|
|
|
|
|
|
[bans]
|
|
|
|
multiple-versions = "deny"
|
|
|
|
wildcards = "deny"
|
|
|
|
highlight = "all"
|
|
|
|
# Certain crates/versions that will be skipped when doing duplicate detection.
|
|
|
|
skip = [
|
Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7 (#6218)
# Objective
- Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7.
## Solution
---
## Changelog
### Changed
- Changed `RawWindowHandleWrapper` to `RawHandleWrapper` which wraps both `RawWindowHandle` and `RawDisplayHandle`, which satisfies the `impl HasRawWindowHandle and HasRawDisplayHandle` that `wgpu` 0.14.0 requires.
- Changed `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, change its type from `bool` to `bevy_window::CursorGrabMode`.
## Migration Guide
- Adjust usage of `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, and adjust its type from `bool` to `bevy_window::CursorGrabMode`.
2022-10-19 17:40:23 +00:00
|
|
|
{ name = "ndk-sys", version = "0.3" }, # from rodio v0.16.0
|
|
|
|
{ name = "ndk", version = "0.6" }, # from rodio v0.16.0
|
|
|
|
{ name = "raw-window-handle", version = "0.4" }, # from winit v0.27.4
|
2022-10-24 21:48:07 +00:00
|
|
|
{ name = "nix", version = "0.24" }, # from cpal v0.14.1
|
2022-09-19 13:56:56 +00:00
|
|
|
{ name = "windows_aarch64_msvc", version = "0.36" }, # from notify v5.0.0
|
Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7 (#6218)
# Objective
- Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7.
## Solution
---
## Changelog
### Changed
- Changed `RawWindowHandleWrapper` to `RawHandleWrapper` which wraps both `RawWindowHandle` and `RawDisplayHandle`, which satisfies the `impl HasRawWindowHandle and HasRawDisplayHandle` that `wgpu` 0.14.0 requires.
- Changed `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, change its type from `bool` to `bevy_window::CursorGrabMode`.
## Migration Guide
- Adjust usage of `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, and adjust its type from `bool` to `bevy_window::CursorGrabMode`.
2022-10-19 17:40:23 +00:00
|
|
|
{ name = "windows_i686_gnu", version = "0.36" }, # from notify v5.0.0
|
|
|
|
{ name = "windows_i686_msvc", version = "0.36" }, # from notify v5.0.0
|
|
|
|
{ name = "windows_x86_64_gnu", version = "0.36" }, # from notify v5.0.0
|
|
|
|
{ name = "windows_x86_64_msvc", version = "0.36" }, # from notify v5.0.0
|
|
|
|
{ name = "windows-sys", version = "0.36" }, # from notify v5.0.0
|
|
|
|
{ name = "windows_aarch64_msvc", version = "0.37" }, # from rodio v0.16.0
|
|
|
|
{ name = "windows_i686_gnu", version = "0.37" }, # from rodio v0.16.0
|
|
|
|
{ name = "windows_i686_msvc", version = "0.37" }, # from rodio v0.16.0
|
|
|
|
{ name = "windows_x86_64_gnu", version = "0.37" }, # from rodio v0.16.0
|
|
|
|
{ name = "windows_x86_64_msvc", version = "0.37" }, # from rodio v0.16.0
|
2021-05-17 23:07:18 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[sources]
|
|
|
|
unknown-registry = "deny"
|
|
|
|
unknown-git = "deny"
|
|
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
|
|
allow-git = []
|