cacao/Cargo.toml

28 lines
691 B
TOML
Raw Normal View History

2020-02-28 13:34:34 +11:00
[package]
name = "appkit"
description = "Rust wrappers for AppKit on macOS and UIKit on iOS."
2020-02-28 13:34:34 +11:00
version = "0.1.0"
edition = "2018"
authors = ["Ryan McGrath <ryan@rymc.io>"]
2020-02-28 13:34:34 +11:00
build = "build.rs"
repository = "https://github.com/ryanmcgrath/appkit-rs"
categories = ["gui", "os::macos-apis"]
keywords = ["gui", "macos", "appkit", "uikit"]
2020-02-28 13:34:34 +11:00
[dependencies]
block = "0.1.6"
core-foundation = { version = "0.7", features = ["with-chrono"] }
core-graphics = "0.19.0"
2020-02-28 13:34:34 +11:00
dispatch = "0.2.0"
libc = "0.2"
2020-02-28 13:34:34 +11:00
objc = "0.2.7"
objc_id = "0.1.1"
uuid = { version = "0.8", features = ["v4"], optional = true }
url = "2.1.1"
[features]
cloudkit = []
user-notifications = ["uuid"]
webview = []
webview-downloading = []