-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 996 Bytes
/
Cargo.toml
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
[package]
name = "dispatchr"
version = "1.0.0"
authors = ["Drew Crawford <drew@sealedabstract.com>"]
description = "Drew's Rust bindings for libdispatch, a.k.a. GCD"
homepage = "https://sealedabstract.com/code/dispatchr"
repository = "https://github.com/drewcrawford/dispatchr"
license = "MIT OR Apache-2.0"
keywords = ["libdispatch","gcd","dispatch","macos","apple"]
categories = ["os::macos-apis", "external-ffi-bindings"]
rust-version = "1.60.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# declare our types as arguable in objr. This is useful in cases where we don't want to pass the bridge type for some reason.
bridge = ["objr"]
[dependencies]
#blocksr = {path = "../blocksr"}
blocksr = "~1"
libc = "~0"
objr = {version = "~1",optional=true}
priority = {version = "~0"}
[dev-dependencies]
criterion = "0.3"
[[test]]
name = "main_sync"
harness = false
[[bench]]
name = "dispatch_read"
harness = false