|
1 | 1 | [package]
|
2 | 2 | name = "ui-sys"
|
3 | 3 | version = "0.1.0"
|
4 |
| -authors = [ "Patrick Walton <[email protected]>"] |
| 4 | +authors = [ "Leo Tindall <[email protected]", "Patrick Walton <[email protected]>"] |
5 | 5 | build = "build.rs"
|
6 | 6 | license = "MIT/Apache 2.0"
|
7 | 7 | description = "Native bindings to the minimalist, cross-platform, widget set `libui`"
|
8 | 8 |
|
| 9 | + |
| 10 | +# These URLs point to more information about the package. These are |
| 11 | +# intended to be webviews of the relevant data, not necessarily compatible |
| 12 | +# with VCS tools and the like. |
| 13 | +documentation = "https://docs.rs/ui-sys/" |
| 14 | +repository = "https://github.com/LeoTindall/libui-rs" |
| 15 | + |
| 16 | +# This points to a file under the package root (relative to this `Cargo.toml`). |
| 17 | +# The contents of this file are stored and indexed in the registry. |
| 18 | +# crates.io will render this file and place the result on the crate's page. |
| 19 | +readme = "../README.md" |
| 20 | + |
| 21 | +# This is a list of up to five keywords that describe this crate. Keywords |
| 22 | +# are searchable on crates.io, and you may choose any words that would |
| 23 | +# help someone find this crate. |
| 24 | +keywords = ["windows", "gtk", "gui", "user interface", "macos"] |
| 25 | + |
| 26 | +# This is a list of up to five categories where this crate would fit. |
| 27 | +# Categories are a fixed list available at crates.io/category_slugs, and |
| 28 | +# they must match exactly. |
| 29 | +categories = ["gui", "os::macos-apis", "os::unix-apis", "os::windows-apis"] |
| 30 | + |
| 31 | +[badges] |
| 32 | +# Travis CI: `repository` in format "<user>/<project>" is required. |
| 33 | +# `branch` is optional; default is `master` |
| 34 | +travis-ci = { repository = "LeoTindall/libui-rs", branch = "master" } |
| 35 | + |
| 36 | +# Is it maintained resolution time: `repository` is required. |
| 37 | +is-it-maintained-issue-resolution = { repository = "LeoTindall/libui-rs" } |
| 38 | + |
| 39 | +# Is it maintained percentage of open issues: `repository` is required. |
| 40 | +is-it-maintained-open-issues = { repository = "LeoTindall/libui-rs" } |
| 41 | + |
| 42 | +maintenance = { status = "actively-developed" } |
| 43 | + |
9 | 44 | [dependencies]
|
10 | 45 | libc = "0.2"
|
11 | 46 |
|
|
0 commit comments