-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
36 lines (28 loc) · 909 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "joycon-rs"
version = "0.5.0-alpha"
authors = ["Kaisei Yokoyama <yokoyama.kaisei.sm@alumni.tsukuba.ac.jp>"]
repository = "https://github.com/KaiseiYokoyama/joycon-rs"
edition = "2018"
description = " a framework for dealing with Nintendo Switch Joy-Con on Rust easily and efficiently"
readme = "README.md"
categories = ["game-development", "hardware-support"]
keywords = ["nintendo_switch", "joycon", "gamedev", "hid", "bluetooth"]
license = "Apache-2.0"
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.4.2"
[dev-dependencies]
doc-comment = "0.3.3"
[[example]]
name = "scan_for_joycons"
[[example]]
name = "player_lights"
[[example]]
name = "standard_full_report"
[[example]]
name = "simple_hid_report"
[[example]]
name = "rumble"