parent
c5718cc041
commit
17c94574a2
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -798,7 +798,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pixels"
|
name = "pixels"
|
||||||
version = "0.0.2"
|
version = "0.0.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"beryllium 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"beryllium 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
[![Build Status](https://travis-ci.org/parasyte/pixels.svg?branch=master)](https://travis-ci.org/parasyte/pixels)
|
[![Build Status](https://travis-ci.org/parasyte/pixels.svg?branch=master)](https://travis-ci.org/parasyte/pixels)
|
||||||
|
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
|
||||||
|
|
||||||
![Pixels Logo](img/pixels.png)
|
![Pixels Logo](img/pixels.png)
|
||||||
|
|
||||||
|
@ -20,6 +21,7 @@ Rapidly prototype a simple 2D game, pixel-based animations, software renderers,
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
- [Conway's Game of Life](./examples/conway)
|
- [Conway's Game of Life](./examples/conway)
|
||||||
|
- [Minimal example with SDL2](./examples/minimal-sdl2)
|
||||||
- [Minimal example with `winit`](./examples/minimal-winit)
|
- [Minimal example with `winit`](./examples/minimal-winit)
|
||||||
- [Pixel Invaders](./examples/invaders)
|
- [Pixel Invaders](./examples/invaders)
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
//! [`winit`](https://crates.io/crates/winit) is a good place to start.
|
//! [`winit`](https://crates.io/crates/winit) is a good place to start.
|
||||||
|
|
||||||
#![deny(clippy::all)]
|
#![deny(clippy::all)]
|
||||||
|
#![forbid(unsafe_code)]
|
||||||
|
|
||||||
use std::cell::RefCell;
|
use std::cell::RefCell;
|
||||||
use std::error::Error as StdError;
|
use std::error::Error as StdError;
|
||||||
|
|
Loading…
Reference in a new issue