Skip to content

Commit

Permalink
Fix Cargo Check
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jan 15, 2025
1 parent 1791a92 commit aadc201
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ readme = "README.md"
keywords = ["metal", "graphics", "bindings"]
license = "MIT OR Apache-2.0"
edition = "2021"
exclude = ["guide/**/*", "examples/texture/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
exclude = [
"guide/**/*",
"examples/texture/**/*",
"tests/**/*",
"Cargo.lock",
"target/**/*",
]

[package.metadata.docs.rs]
targets = [
"aarch64-apple-darwin", # presented first in Docs.rs, keep this here
"aarch64-apple-darwin", # presented first in Docs.rs, keep this here
"aarch64-apple-ios",
"aarch64-apple-ios-sim",
"x86_64-apple-darwin",
Expand All @@ -27,6 +33,9 @@ private = []
mps = []
link = ["core-graphics-types/link"]

# No-op feature to let cargo-cfg checking to be happy
cargo-clippy = []

[dependencies]
core-graphics-types = { version = "0.1.3", default-features = false }
bitflags = "2"
Expand Down Expand Up @@ -102,6 +111,4 @@ required-features = ["dispatch"]
name = "fence"

[workspace]
members = [
"examples/texture",
]
members = ["examples/texture"]

0 comments on commit aadc201

Please sign in to comment.