mini_gl_fb/Cargo.toml

20 lines
457 B
TOML
Raw Normal View History

2018-05-29 22:48:20 -04:00
[package]
name = "mini_gl_fb"
version = "0.8.0"
2018-05-29 22:48:20 -04:00
authors = ["shivshank"]
2018-08-25 15:28:32 -04:00
description = "Quick and easy window creation, input, and high speed bitmap rendering"
repository = "https://github.com/shivshank/mini_gl_fb"
2021-02-21 18:27:58 -08:00
edition = "2018"
2018-07-27 17:10:51 -04:00
license = "MIT"
2018-08-25 15:28:32 -04:00
keywords = ["opengl", "windowing", "framebuffer", "window"]
categories = ["rendering"]
2018-08-25 15:28:32 -04:00
readme = "README.md"
2018-05-29 22:48:20 -04:00
[dependencies]
glutin = "0.26.0"
2018-07-24 18:13:22 -04:00
gl = "0.10.0"
2018-07-27 17:10:51 -04:00
rustic_gl = "0.3.2"
2021-01-22 16:33:07 -08:00
derive_builder = "0.10.0-alpha"