Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
k committed Dec 5, 2021
1 parent ca566f4 commit 34b5b46
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "joycon-rs"
version = "0.6.2"
version = "0.6.3"
authors = ["Kaisei Yokoyama <yokoyama.kaisei.sm@alumni.tsukuba.ac.jp>"]
repository = "https://github.com/KaiseiYokoyama/joycon-rs"
edition = "2018"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
//! [SubCommandMode<D, RD>]: 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;

Expand Down

0 comments on commit 34b5b46

Please sign in to comment.