-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
37 lines (32 loc) · 1.19 KB
/
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
37
[package]
name = "mach"
version = "0.3.3"
authors = [
"Nick Fitzgerald <[email protected]>",
"David Cuddeback <[email protected]>",
"Gonzalo Brito Gadeschi <[email protected]>"
]
license = "BSD-2-Clause/MIT/Apache-2.0"
description = "A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX."
repository = "https://github.com/fitzgen/mach"
readme = "README.md"
keywords = ["kernel", "macos", "darwin"]
categories = ["api-bindings", "external-ffi-bindings", "no-std", "os"]
edition = "2015"
[badges]
travis-ci = { repository = "fitzgen/mach" }
is-it-maintained-issue-resolution = { repository = "fitzgen/mach" }
is-it-maintained-open-issues = { repository = "fitzgen/mach" }
maintenance = { status = "passively-maintained" }
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
libc = { version = "0.2", default-features = false }
rustc-std-workspace-core = { version = "1.0.0", optional = true }
[features]
default = []
# Enables deprecated and removed APIs.
deprecated = []
rustc-dep-of-std = ['rustc-std-workspace-core', 'libc/rustc-dep-of-std']
[workspace]
members = ["mach-test"]
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"