diff --git a/Cargo.toml b/Cargo.toml index 8e7946e..981c410 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "joycon-rs" -version = "0.6.2" +version = "0.6.3" authors = ["Kaisei Yokoyama "] repository = "https://github.com/KaiseiYokoyama/joycon-rs" edition = "2018" @@ -14,16 +14,16 @@ exclude = ["/images/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hidapi-alt-for-hidapi-issue-127 = "1.2.1" -crossbeam-channel = "0.5.1" -lazy_static = "1.4.0" +hidapi = "1.3" +crossbeam-channel = "0.5" +lazy_static = "1.4" serde = { version = "1.0", features = ["derive"] , optional = true } [features] use_serde = ["serde"] [dev-dependencies] -doc-comment = "0.3.3" +doc-comment = "0.3" [[example]] name = "scan_for_joycons" diff --git a/src/lib.rs b/src/lib.rs index 47cd79e..dd44fca 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -144,7 +144,7 @@ //! [SubCommandMode]: joycon/input_report_mode/sub_command_mode/struct.SubCommandMode.html //! [Deal with LED (Player lights)]: joycon/lights/index.html //! [Vibration (Rumble)]:joycon/struct.Rumble.html -extern crate hidapi_alt_for_hidapi_issue_127 as hidapi; +extern crate hidapi; #[macro_use] extern crate lazy_static;