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.
22 lines
756 B
TOML
22 lines
756 B
TOML
[package]
|
|
name = "prongs"
|
|
version = "1.0.0"
|
|
authors = ["Ales Katona <almindor@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "LGPL-3.0"
|
|
repository = "https://gitlab.bitsmart.ltd/open/prongs.git"
|
|
documentation = "https://doc.bitsmart.ltd/prongs"
|
|
homepage = "https://gitlab.bitsmart.ltd/open"
|
|
description = "Input handling schema written in rust. Backend agnostic, provides serializability, assignment and unified interface for working with inputs. Keyboard, mouse and controllers supported."
|
|
|
|
[dependencies]
|
|
bitflags = "1.0.4"
|
|
serde = { version = "1.0.85", features = ["derive"] }
|
|
gilrs = { version = "0.6.3", optional = true }
|
|
piston = { version = "0.40.0", optional = true }
|
|
|
|
[features]
|
|
backend_piston = ["piston"]
|
|
backend_gilrs = ["gilrs"]
|