1ee5a01d4b
We already ship both license files in the published crate, have both licenses listed in the `README`, and even `ash-window` already lists both in `Cargo.toml`. I found this while experimenting with shields.io badges, as there's a special link that scrapes the license straight off of crates.io: https://img.shields.io/crates/l/ash (and many more). This might've been nice to use except that it's outdated until we publish the next release, and doesn't allow a nice link to either `LICENSE-XXX` file that we have now.
32 lines
799 B
TOML
32 lines
799 B
TOML
[package]
|
|
name = "ash"
|
|
version = "0.37.0+1.3.219"
|
|
authors = ["maik klein <maikklein@googlemail.com>"]
|
|
description = "Vulkan bindings for Rust"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/MaikKlein/ash"
|
|
readme = "../README.md"
|
|
keywords = ["vulkan", "graphic"]
|
|
documentation = "https://docs.rs/ash"
|
|
edition = "2018"
|
|
rust-version = "1.59.0"
|
|
|
|
[dependencies]
|
|
libloading = { version = "0.7", optional = true }
|
|
|
|
[features]
|
|
default = ["loaded", "debug"]
|
|
# Link the Vulkan loader at compile time.
|
|
linked = []
|
|
# Support searching for the Vulkan loader manually at runtime.
|
|
loaded = ["libloading"]
|
|
# Whether Vulkan structs should implement Debug.
|
|
debug = []
|
|
|
|
[package.metadata.release]
|
|
no-dev-version = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|