From e03af083063daabb9f721176dbe2947aec0f7233 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sun, 1 Oct 2017 15:48:57 +0200 Subject: [PATCH] Updated some metadata for crates.io --- Cargo.toml | 10 ++++++++-- README.md | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d6a9ad4..2c3ac6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,20 @@ [package] name = "minifb" -version = "0.10.1" +version = "0.10.2" license = "MIT/Apache-2.0" authors = ["Daniel Collin "] description = "Cross-platform window setup with optional bitmap rendering" keywords = ["windowing", "window", "framebuffer"] +categories = ["rendering"] repository = "https://github.com/emoon/rust_minifb" homepage = "https://github.com/emoon/rust_minifb" -documentation = "https://docs.rs/minifb/0.9.0/minifb" +documentation = "https://docs.rs/minifb/0.10.1/minifb" build = "build.rs" +readme = "README.md" + +[badges] +appveyor = { repository = "https://ci.appveyor.com/project/emoon/rust-minifb" } +travis-ci = { repository = "https://travis-ci.org/emoon/rust_minifb" } [build-dependencies] gcc = "0.3.19" diff --git a/README.md b/README.md index d96620a..392a1f4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.10.1" +minifb = "0.10.2" ``` Example