fb71d45b30
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.
32 lines
730 B
TOML
32 lines
730 B
TOML
[package]
|
|
name = "core-text"
|
|
version = "21.0.0"
|
|
description = "Bindings to the Core Text framework."
|
|
|
|
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.workspace = true
|
|
|
|
foreign-types = "0.5"
|
|
|
|
[features]
|
|
default = ["mountainlion", "link"]
|
|
# For OS X 10.7 compat, exclude this feature. It will exclude some things from
|
|
# the exposed APIs in the crate.
|
|
mountainlion = []
|
|
# Disable to manually link. Enabled by default.
|
|
link = ["core-foundation/link", "core-graphics/link"]
|