mirror of
https://github.com/italicsjenga/ash-molten.git
synced 2024-12-23 05:11:31 +11:00
Widen ash
support up to 0.37
, and bump version to 0.13.1
. (#71)
* Widen `ash` support up to `0.37`, and bump version to `0.13.1`. * Allow `Unicode-DFS-2016` license (now required by proc macro ecosystem).
This commit is contained in:
parent
09bed931f0
commit
3987210aff
13
Cargo.toml
13
Cargo.toml
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ash-molten"
|
||||
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
|
||||
version = "0.13.0+1.1.10"
|
||||
version = "0.13.1+1.1.10"
|
||||
authors = ["Embark <opensource@embark-studios.com>", "Maik Klein <maik.klein@embark-studios.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -13,8 +13,15 @@ homepage = "https://github.com/EmbarkStudios/ash-molten"
|
|||
documentation = "https://docs.rs/ash-molten"
|
||||
build = "build/build.rs"
|
||||
|
||||
[dependencies]
|
||||
ash = { version = "0.35", default-features = false }
|
||||
[dependencies.ash]
|
||||
# When breaking changes aren't needed (which is likely because of how little
|
||||
# of `ash` is being interfaced with), it's beneficial to keep widening the
|
||||
# version range range here, and only bumping `ash-molten`'s *patch* number.
|
||||
#
|
||||
# NB: you must check that `ash-molten` compiles with every `ash` version
|
||||
# in this range, not just the start and the end, to be sure it's compatible.
|
||||
version = ">=0.35, <=0.37"
|
||||
default-features = false
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
Loading…
Reference in a new issue