diff options
Diffstat (limited to 'third_party/rust/metal/Cargo.toml')
-rw-r--r-- | third_party/rust/metal/Cargo.toml | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/third_party/rust/metal/Cargo.toml b/third_party/rust/metal/Cargo.toml new file mode 100644 index 0000000000..9b7c52f8bf --- /dev/null +++ b/third_party/rust/metal/Cargo.toml @@ -0,0 +1,131 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2018" +name = "metal" +version = "0.24.0" +authors = ["GFX Developers"] +exclude = [ + "guide/**/*", + "examples/texture/**/*", + "tests/**/*", + "Cargo.lock", + "target/**/*", +] +description = "Rust bindings for Metal" +homepage = "https://github.com/gfx-rs/metal-rs" +documentation = "https://docs.rs/crate/metal" +readme = "README.md" +keywords = [ + "metal", + "graphics", + "bindings", +] +license = "MIT OR Apache-2.0" +repository = "https://github.com/gfx-rs/metal-rs" + +[package.metadata.docs.rs] +default-target = "x86_64-apple-darwin" + +[[example]] +name = "window" + +[[example]] +name = "headless-render" + +[[example]] +name = "library" + +[[example]] +name = "reflection" + +[[example]] +name = "caps" + +[[example]] +name = "argument-buffer" + +[[example]] +name = "bindless" + +[[example]] +name = "circle" +path = "examples/circle/main.rs" + +[[example]] +name = "compute" +path = "examples/compute/main.rs" + +[[example]] +name = "mps" +required-features = ["mps"] + +[[example]] +name = "embedded-lib" +path = "examples/compute/embedded-lib.rs" + +[[example]] +name = "compute-argument-buffer" +path = "examples/compute/compute-argument-buffer.rs" + +[[example]] +name = "bind" + +[[example]] +name = "events" +required-features = ["dispatch"] + +[[example]] +name = "fence" + +[dependencies.bitflags] +version = "1" + +[dependencies.block] +version = "0.1.6" + +[dependencies.core-graphics-types] +version = "0.1" + +[dependencies.dispatch] +version = "0.2" +optional = true + +[dependencies.foreign-types] +version = "0.3.2" + +[dependencies.log] +version = "0.4" + +[dependencies.objc] +version = "0.2.4" +features = ["objc_exception"] + +[dev-dependencies.cocoa] +version = "0.24.0" + +[dev-dependencies.cty] +version = "0.2.1" + +[dev-dependencies.png] +version = "0.16" + +[dev-dependencies.sema] +version = "0.1.4" + +[dev-dependencies.winit] +version = "0.24" + +[features] +default = [] +mps = [] +private = [] |