Files
core-foundation-rs/core-graphics/Cargo.toml
T
Bruce Mitchener fb71d45b30 Enable clippy, suppress lots, fix a couple. (#703)
This enables clippy in CI and suppresses most of the existing
warnings. We can drill down and fix those later, but this will
help start getting things under control.
2024-08-13 04:25:49 +00:00

33 lines
660 B
TOML

[package]
name = "core-graphics"
description = "Bindings to Core Graphics for macOS"
version = "0.24.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-apple-darwin"
[lints]
workspace = true
[dependencies]
core-foundation.workspace = true
core-graphics-types.workspace = true
bitflags = "2"
foreign-types = "0.5.0"
libc = "0.2"
[features]
default = ["link"]
elcapitan = []
highsierra = []
# Disable to manually link. Enabled by default.
link = ["core-foundation/link", "core-graphics-types/link"]