Skip to content

Commit aadc201

Browse files
committed
Fix Cargo Check
1 parent 1791a92 commit aadc201

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Cargo.toml

+12-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,17 @@ readme = "README.md"
1010
keywords = ["metal", "graphics", "bindings"]
1111
license = "MIT OR Apache-2.0"
1212
edition = "2021"
13-
exclude = ["guide/**/*", "examples/texture/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
13+
exclude = [
14+
"guide/**/*",
15+
"examples/texture/**/*",
16+
"tests/**/*",
17+
"Cargo.lock",
18+
"target/**/*",
19+
]
1420

1521
[package.metadata.docs.rs]
1622
targets = [
17-
"aarch64-apple-darwin", # presented first in Docs.rs, keep this here
23+
"aarch64-apple-darwin", # presented first in Docs.rs, keep this here
1824
"aarch64-apple-ios",
1925
"aarch64-apple-ios-sim",
2026
"x86_64-apple-darwin",
@@ -27,6 +33,9 @@ private = []
2733
mps = []
2834
link = ["core-graphics-types/link"]
2935

36+
# No-op feature to let cargo-cfg checking to be happy
37+
cargo-clippy = []
38+
3039
[dependencies]
3140
core-graphics-types = { version = "0.1.3", default-features = false }
3241
bitflags = "2"
@@ -102,6 +111,4 @@ required-features = ["dispatch"]
102111
name = "fence"
103112

104113
[workspace]
105-
members = [
106-
"examples/texture",
107-
]
114+
members = ["examples/texture"]

0 commit comments

Comments
 (0)