pixelfoo-viewer/Cargo.toml
Juergen Stuber ed8abb74e6 Initial version
Works for the pixelfoo apps.

Limitations:
- Resizing the window is buggy.
- The frame rate argument has no effect.
- The update and render event logic should be reworked.
- Supports only single file executables, not interpreters with args
  (e.g. running an app as "python3 app.py" is not supported)
- Supports only RGB, not RGBW (yet)
2023-04-10 22:51:47 +02:00

20 lines
505 B
TOML

[package]
name = "pixelfoo-viewer"
version = "0.1.0"
authors = ["Juergen Stuber <juergen@jstuber.net>"]
description = "Viewer for pixelfoo frame streams."
license = "MIT OR Apache-2.0"
edition = "2021"
[dependencies]
piston = "0.53.2"
piston2d-graphics = "0.43.0"
piston2d-opengl_graphics = "0.82.0"
piston_window = "0.128.0"
pistoncore-glutin_window = "0.71.0"
[dependencies.clap]
version = "4.2.1"
default-features = false
features = ["std", "help", "usage", "suggestions", "error-context", "derive"]