-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump to v0.2.3; fixes for rust-lang/rust#61478
- Loading branch information
Joaquín Rosales
committed
Jun 8, 2019
1 parent
75fc281
commit 69ebfd1
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "sensehat-screen" | ||
description = "A library for using the 8x8-LED matrix, with RGB565 coloring, on the Raspberry Pi Sense HAT device." | ||
version = "0.2.2" | ||
version = "0.2.3" | ||
authors = ["Joaquin Rosales <[email protected]>"] | ||
keywords = ["sensehat", "screen", "8x8", "raspberry-pi", "framebuffer"] | ||
categories = ["embedded", "rendering", "visualization", "encoding"] | ||
categories = ["embedded", "gui", "hardware-support", "rendering::graphics-api"] | ||
homepage = "https://github.com/saibatizoku/sensehat-screen-rs" | ||
repository = "https://github.com/saibatizoku/sensehat-screen-rs" | ||
readme = "README.md" | ||
|
@@ -13,7 +13,7 @@ build = "build.rs" | |
|
||
[dependencies] | ||
framebuffer = { version = "0.1", optional = true } | ||
font8x8 = { version = "0.2.3", optional = true } | ||
font8x8 = { version = "0.2.5", optional = true } | ||
lazy_static = "1.0" | ||
serde = { version = "1.0", optional = true } | ||
serde_derive = { version = "1.0", optional = true } | ||
|