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")]