28 lines
772 B
TOML
28 lines
772 B
TOML
[package]
|
|
name = "shinekit"
|
|
version = "0.1.0-dev"
|
|
authors = ["Ryan McGrath <ryan@rymc.io>"]
|
|
description = """
|
|
A general UI framework for Mac, iOS, and Windows. Uses actual native
|
|
platform widgets, very little to no middleman. Cocoa on Mac, Cocoa Touch on iOS,
|
|
UWP on Windows, with potentially more coming.
|
|
"""
|
|
documentation = "https://shinekit.rs/docs/"
|
|
homepage = "https://shinekit.rs"
|
|
repository = "https://github.com/ryanmcgrath/shinekit"
|
|
readme = "../readme.md"
|
|
keywords = ["shinekit", "gui", "framework", "cocoa", "iphone", "ios", "windows"]
|
|
license = "MIT"
|
|
categories = ["gui"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
objc = "0.2.2"
|
|
core-foundation = "0.6.0"
|
|
core-graphics = "0.14.0"
|
|
cocoa = "0.15.0"
|
|
rand = "0.5.0"
|
|
im = "10.2.0"
|
|
objc_id = "0.1.0"
|
|
serde = "*"
|
|
serde_json = "*"
|