-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
56 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "wooting-analog-common" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
homepage = "https://github.com/WootingKb/wooting-analog-sdk" | ||
repository = "https://github.com/WootingKb/wooting-analog-sdk" | ||
description = "Common elements of the Wooting Analog SDK" | ||
keywords = [ "wooting", "keyboard", "analog", "sdk" ] | ||
keywords = ["wooting", "keyboard", "analog", "sdk"] | ||
documentation = "https://docs.rs/wooting-analog-common" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
@@ -25,4 +25,4 @@ serde = { version = "1.0", features = ["derive"], optional = true } | |
crate-type = ["staticlib", "rlib"] | ||
|
||
[features] | ||
serdes = ["serde"] | ||
serdes = ["serde"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
[package] | ||
name = "wooting-analog-plugin-dev" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
homepage = "https://github.com/WootingKb/wooting-analog-sdk" | ||
repository = "https://github.com/WootingKb/wooting-analog-sdk" | ||
description = "Library for designing plugins for the Wooting Analog SDK" | ||
keywords = [ "wooting", "keyboard", "analog", "sdk", "plugin" ] | ||
keywords = ["wooting", "keyboard", "analog", "sdk", "plugin"] | ||
documentation = "https://docs.rs/wooting-analog-plugin-dev" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
#use this for local development | ||
wooting-analog-common = { path = "../wooting-analog-common"} | ||
wooting-analog-common = { path = "../wooting-analog-common" } | ||
# Use this when publishing | ||
# wooting-analog-common = "0.7.1" | ||
ffi-support = "0.4" | ||
|
||
|
||
[lib] | ||
crate-type = ["staticlib", "rlib"] | ||
crate-type = ["staticlib", "rlib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wooting-analog-plugin" | ||
version = "0.7.5" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
|
@@ -12,9 +12,11 @@ readme = "README.md" | |
[dependencies] | ||
log = "^0.4" | ||
# For dev | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"} | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" } | ||
# wooting-analog-plugin-dev = "^0.6" | ||
hidapi = { version = "^2.5", features = ["linux-static-hidraw"], default-features = false } | ||
hidapi = { version = "^2.5", features = [ | ||
"linux-static-hidraw", | ||
], default-features = false } | ||
env_logger = "^0.7" | ||
objekt = "^0.1" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wooting-analog-sdk-updater" | ||
version = "0.7.5" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,4 +17,4 @@ chrono = "0.4" | |
|
||
[dependencies.winapi] | ||
version = "0.3" | ||
features = ["winuser"] | ||
features = ["winuser"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "wooting-analog-sdk" | ||
version = "0.7.5" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
description = "Wooting Analog SDK" | ||
repository = "https://github.com/WootingKb/wooting-analog-sdk" | ||
homepage = "https://github.com/WootingKb/wooting-analog-sdk" | ||
keywords = [ "wooting", "keyboard", "analog", "sdk" ] | ||
keywords = ["wooting", "keyboard", "analog", "sdk"] | ||
build = "build.rs" | ||
#categories = [] | ||
#license-file = "../LICENSE" | ||
|
@@ -21,16 +21,16 @@ lazy_static = "*" | |
ffi-support = "0.4" | ||
scancode = "0.1.2" | ||
bimap = "0.4" | ||
wooting-analog-common = { path = "../wooting-analog-common"} | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"} | ||
wooting-analog-common = { path = "../wooting-analog-common" } | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" } | ||
|
||
[dev-dependencies] | ||
shared_memory = "^0.8" | ||
|
||
[build-dependencies] | ||
cmake = "0.1" | ||
wooting-analog-common = { path = "../wooting-analog-common"} | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"} | ||
wooting-analog-common = { path = "../wooting-analog-common" } | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" } | ||
|
||
|
||
[target.'cfg(windows)'.dependencies] | ||
|
@@ -41,10 +41,26 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[package.metadata.deb] | ||
assets = [ | ||
["../target/release-artifacts/libwooting_analog_sdk.so", "usr/lib/", "755"], | ||
["../target/release-artifacts/libwooting_analog_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/", "755"], | ||
["../target/release-artifacts/libwooting_analog_test_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-test-plugin/", "755"], | ||
["../target/release-artifacts/wooting-analog-virtual-control", "usr/bin/", "755"], | ||
[ | ||
"../target/release-artifacts/libwooting_analog_sdk.so", | ||
"usr/lib/", | ||
"755", | ||
], | ||
[ | ||
"../target/release-artifacts/libwooting_analog_plugin.so", | ||
"usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/", | ||
"755", | ||
], | ||
[ | ||
"../target/release-artifacts/libwooting_analog_test_plugin.so", | ||
"usr/local/share/WootingAnalogPlugins/wooting-test-plugin/", | ||
"755", | ||
], | ||
[ | ||
"../target/release-artifacts/wooting-analog-virtual-control", | ||
"usr/bin/", | ||
"755", | ||
], | ||
] | ||
depends = "libhidapi-hidraw0, libudev1, $auto" | ||
priority = "optional" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "wooting-analog-test-plugin" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"} | ||
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" } | ||
shared_memory = "^0.8" | ||
log = "^0.4" | ||
env_logger = "^0.8" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = ["cdylib", "rlib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "wooting-analog-virtual-control" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
||
[dependencies] | ||
wooting-analog-common = { path = "../wooting-analog-common"} | ||
wooting-analog-common = { path = "../wooting-analog-common" } | ||
shared_memory = "^0.8" | ||
log = "^0.4" | ||
iced = "^0.4" | ||
env_logger = "0.8" | ||
lazy_static = "*" | ||
wooting-analog-test-plugin = { path="../wooting-analog-test-plugin" } | ||
wooting-analog-test-plugin = { path = "../wooting-analog-test-plugin" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wooting-analog-wrapper" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["simon-wh <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
|
@@ -10,7 +10,7 @@ repository = "https://github.com/WootingKb/wooting-analog-sdk" | |
[dependencies] | ||
lazy_static = "*" | ||
libloading = "^0.5" | ||
wooting-analog-common = { path = "../wooting-analog-common"} | ||
wooting-analog-common = { path = "../wooting-analog-common" } | ||
ctrlc = { version = "3", features = ["termination"] } | ||
|
||
[lib] | ||
|