-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 689 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 689 Bytes
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
[package]
name = "objc"
version = "0.2.7"
authors = ["Steven Sheldon"]
edition = "2018"
description = "Objective-C Runtime bindings and wrapper for Rust."
keywords = ["objective-c", "osx", "ios", "cocoa", "uikit"]
readme = "README.md"
repository = "http://github.com/SSheldon/rust-objc"
documentation = "http://ssheldon.github.io/rust-objc/objc/"
license = "MIT"
exclude = [
".gitignore",
".travis.yml",
"doc.sh",
"tests-ios/**",
]
[features]
exception = ["objc_exception"]
verify_message = []
[dependencies]
malloc_buf = "1.0"
objc-encode = { path = "../objc_encode", version = "1.0" }
objc_exception = { path = "../objc_exception", version = "0.1", optional = true }