You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
826 B
TOML

[package]
name = "prongs"
version = "0.0.5"
authors = ["Ales Katona <almindor@gmail.com>"]
edition = "2018"
readme = "README.md"
license = "LGPL-3.0"
repository = "https://git.bitsmart.ltd/almindor/prongs.git"
homepage = "https://git.bitsmart.ltd/almindor/prongs.git"
description = "Input handling schema written in rust. Backend agnostic, provides serializability, assignment and unified interface for working with inputs. Keyboard, mouse and controllers supported."
categories = ["game-engines", "config"]
keywords = ["input", "controller", "keyboard", "controls", "game"]
[dependencies]
bitflags = "1.0.4"
serde = { version = "1.0.87", features = ["derive"] }
gilrs = { version = "0.6.3", optional = true }
piston = { version = "0.41.0", optional = true }
[features]
backend_piston = ["piston"]
backend_gilrs = ["gilrs"]