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