2020-02-28 13:34:34 +11:00
|
|
|
[package]
|
2020-03-29 12:45:24 +11:00
|
|
|
name = "cacao"
|
|
|
|
description = "Rust bindings for AppKit (macOS) and UIKit (iOS/tvOS). Experimental, but working!"
|
2020-02-28 13:34:34 +11:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-03-27 12:06:11 +11:00
|
|
|
authors = ["Ryan McGrath <ryan@rymc.io>"]
|
2020-02-28 13:34:34 +11:00
|
|
|
build = "build.rs"
|
2020-03-29 12:45:24 +11:00
|
|
|
repository = "https://github.com/ryanmcgrath/cacao"
|
|
|
|
categories = ["gui", "os::macos-apis", "os::ios-apis"]
|
|
|
|
keywords = ["gui", "macos", "ios", "appkit", "uikit"]
|
2020-03-20 14:07:44 +11:00
|
|
|
|
2020-02-28 13:34:34 +11:00
|
|
|
[dependencies]
|
|
|
|
block = "0.1.6"
|
2020-03-27 12:06:11 +11:00
|
|
|
core-foundation = { version = "0.7", features = ["with-chrono"] }
|
2020-03-27 11:31:42 +11:00
|
|
|
core-graphics = "0.19.0"
|
2020-02-28 13:34:34 +11:00
|
|
|
dispatch = "0.2.0"
|
2020-03-18 10:55:09 +11:00
|
|
|
libc = "0.2"
|
2020-02-28 13:34:34 +11:00
|
|
|
objc = "0.2.7"
|
|
|
|
objc_id = "0.1.1"
|
2020-03-18 12:19:56 +11:00
|
|
|
uuid = { version = "0.8", features = ["v4"], optional = true }
|
2020-03-11 14:09:24 +11:00
|
|
|
url = "2.1.1"
|
2020-03-01 10:34:07 +11:00
|
|
|
|
|
|
|
[features]
|
2020-03-30 16:33:51 +11:00
|
|
|
default = ["macos"]
|
|
|
|
macos = []
|
2020-03-17 16:22:15 +11:00
|
|
|
cloudkit = []
|
2020-03-18 12:19:56 +11:00
|
|
|
user-notifications = ["uuid"]
|
2020-03-18 13:11:03 +11:00
|
|
|
webview = []
|
2020-03-20 14:07:44 +11:00
|
|
|
webview-downloading = []
|