1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# 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 = "2021"
rust-version = "1.71"
name = "dispatch2"
version = "0.3.0"
authors = [
"Mads Marquart <mads@marquart.dk>",
"Mary <mary@mary.zone>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bindings and wrappers for Apple's Grand Central Dispatch (GCD)"
readme = "README.md"
keywords = [
"gcd",
"macos",
"ios",
"dispatch",
"libdispatch",
]
categories = [
"api-bindings",
"development-tools::ffi",
"external-ffi-bindings",
"os::macos-apis",
]
license = "Zlib OR Apache-2.0 OR MIT"
repository = "https://github.com/madsmtm/objc2"
[package.metadata.docs.rs]
default-target = "aarch64-apple-darwin"
rustc-args = [
"--cfg",
"docsrs",
]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-apple-ios",
"aarch64-apple-tvos",
"aarch64-apple-watchos",
"aarch64-apple-ios-macabi",
"aarch64-apple-visionos",
"x86_64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
]
[package.metadata.release]
shared-version = false
tag-prefix = "dispatch"
[features]
alloc = []
block2 = ["dep:block2"]
default = [
"std",
"block2",
"libc",
"objc2",
]
libc = ["dep:libc"]
objc2 = ["dep:objc2"]
std = ["alloc"]
[lib]
name = "dispatch2"
path = "src/lib.rs"
[dependencies.bitflags]
version = "2.5.0"
features = ["std"]
default-features = false
[dependencies.block2]
version = ">=0.6.1, <0.8.0"
features = ["alloc"]
optional = true
default-features = false
[dependencies.libc]
version = "0.2.80"
optional = true
default-features = false
[dependencies.objc2]
version = ">=0.6.1, <0.8.0"
features = ["std"]
optional = true
default-features = false
[dev-dependencies.static_assertions]
version = "1.1.0"
[lints.clippy]
ptr_as_ptr = "warn"
redundant_feature_names = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "warn"
missing_copy_implementations = "warn"
non_ascii_idents = "deny"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"
|