forked from objrs/objrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (47 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This file and its contents are licensed by their authors and copyright holders under the Apache
# License (Version 2.0), MIT license, or Mozilla Public License (Version 2.0), at your option, and
# may not be copied, modified, or distributed except according to those terms. For copies of these
# licenses and more information, see the COPYRIGHT file in this distribution's top-level directory.
[workspace]
members = [
".",
"demo",
"frameworks/app_kit",
"frameworks/core_graphics",
"frameworks/foundation",
"frameworks/foundation/macros",
"frameworks/metal",
"frameworks/metal_kit",
"macos",
"macos_demo",
"macros",
"test_utils",
"tiny_test",
"utils",
]
exclude = ["test"]
[package]
name = "objrs"
version = "0.0.3-dev"
authors = ["Michael Bradshaw <[email protected]>, CoolBlueWater"]
edition = "2018"
license = "Apache-2.0 OR MIT OR MPL-2.0"
description = "Objective-Rust: the unholy union of Rust and Objective-C."
repository = "https://gitlab.com/objrs/objrs"
readme = "README.md"
documentation = "https://gitlab.com/objrs/objrs/blob/master/DOCUMENTATION.md"
keywords = ["objc", "objective-c"]
categories = ["api-bindings", "development-tools::ffi", "external-ffi-bindings", "no-std", "os::macos-apis"]
[badges]
maintenance = { status = "experimental" }
[lib]
name = "objrs"
path = "src/lib.rs"
doc = false
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[dependencies]
libc = { version = "0.2", default-features = false }
objrs_macros = { path = "macros", version = "0.0.3-dev" }