simulate aims to make simulating keyboard keystrokes easy.

Progress

At the moment, only Windows is supported.

Example

```rust use simulate; use simulate::Key;

// Press a key simulate::press_key(Key::A);

// Releases it simulate::release_key(Key::A);

// Trigger a key (press + release) simulate::trigger_key(Key:B);

// Type single character simulate::type_char('♪');

// Type a string simulate::type_str("Hello, world!"); ```