From a1efe9d3b5bba49618e356c90966405e7f755701 Mon Sep 17 00:00:00 2001 From: Ales Katona Date: Fri, 25 Jan 2019 16:00:48 -0700 Subject: [PATCH] remove choice lock + Cargo.toml fillups --- Cargo.toml | 4 ++++ src/lib.rs | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 28f633f..630c7ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,10 @@ version = "1.0.0" authors = ["Ales Katona "] edition = "2018" license = "LGPLv3" +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" diff --git a/src/lib.rs b/src/lib.rs index 962fe1b..7d165d8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,10 +4,6 @@ use crate::types::{InputCause, InputTypeFlags, ProcessingResult}; pub mod types; -// error out specifically if no backend is chosen -#[cfg(not(any(feature="backend_piston", feature="backend_gilrs")))] -compile_error!("No backend selected, use features= in Cargo.toml or --features when building directly."); - #[cfg(feature="backend_piston")] pub mod backend_piston; #[cfg(feature="backend_gilrs")]