Skip to content

Commit 9b39ce1

Browse files
committed
ui-sys 0.1.0
1 parent 1c5a200 commit 9b39ce1

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

ui-sys/Cargo.toml

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,46 @@
11
[package]
22
name = "ui-sys"
33
version = "0.1.0"
4-
authors = ["Patrick Walton <[email protected]>"]
4+
authors = ["Leo Tindall <[email protected]", "Patrick Walton <[email protected]>"]
55
build = "build.rs"
66
license = "MIT/Apache 2.0"
77
description = "Native bindings to the minimalist, cross-platform, widget set `libui`"
88

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+
944
[dependencies]
1045
libc = "0.2"
1146

0 commit comments

Comments
 (0)