wakey 0.3.0

Wake-on-LAN library for creating and sending magic WOL packets.
Documentation

Library for managing Wake-on-LAN packets.

Example

let wol = wakey::WolPacket::from_string("01:02:03:04:05:06", ':').unwrap();
if wol.send_magic().is_ok() {
println!("Sent the magic packet!");
} else {
println!("Failed to send the magic packet!");
}