-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use workspaces to reduce dependencies (#7)
* use workspaces to reduce dependencies * bump version
- Loading branch information
1 parent
08df763
commit 25ca3f4
Showing
6 changed files
with
40 additions
and
21 deletions.
There are no files selected for viewing
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,18 +1,5 @@ | ||
[package] | ||
name = "wakey" | ||
version = "0.2.1" | ||
|
||
authors = ["Hubert Bugaj<[email protected]>"] | ||
edition = "2021" | ||
|
||
license = "MIT" | ||
repository = "https://github.com/LesnyRumcajs/wakey" | ||
|
||
description = "Wake-on-LAN library for creating and sending magic WOL packets." | ||
keywords = ["wol", "wake-on-lan"] | ||
categories = ["network-programming"] | ||
|
||
[dependencies] | ||
hex = "~0.3" | ||
arrayvec = "0.7.2" | ||
clap = { version = "3.1.18", features = ["derive"] } | ||
[workspace] | ||
members = [ | ||
"wakey", | ||
"wakey-wake" | ||
] |
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "wakey-wake" | ||
version = "0.2.2" | ||
|
||
authors = ["Hubert Bugaj<[email protected]>"] | ||
edition = "2021" | ||
|
||
license = "MIT" | ||
repository = "https://github.com/LesnyRumcajs/wakey" | ||
|
||
description = "Sample CLI tool for creating and sending Wake-on-LAN packets." | ||
keywords = ["wol", "wake-on-lan"] | ||
categories = ["network-programming"] | ||
|
||
[dependencies] | ||
wakey = { path = "../wakey" } | ||
clap = { version = "3.1.18", features = ["derive"] } |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "wakey" | ||
version = "0.2.2" | ||
|
||
authors = ["Hubert Bugaj<[email protected]>"] | ||
edition = "2021" | ||
|
||
license = "MIT" | ||
repository = "https://github.com/LesnyRumcajs/wakey" | ||
|
||
description = "Wake-on-LAN library for creating and sending magic WOL packets." | ||
keywords = ["wol", "wake-on-lan"] | ||
categories = ["network-programming"] | ||
|
||
[dependencies] | ||
hex = "~0.3" | ||
arrayvec = "0.7.2" |
File renamed without changes.