mki_fork 0.2.1

Windows and Linux library for registring global input hooks and simulating keyboard and mouse events. This is a basic fork from mki to update the 'input' dependency that uses an updated libinput 1.19.1 version vs 1.19.0.
Documentation
on:
  workflow_dispatch: {}
name: CI

jobs:
  build_linux:
    name: Rust project
    runs-on: ubuntu-latest
    steps:
      - name: update apt 
        run: sudo apt-get update 
      - name: Install deps
        run: sudo apt-get -y install libinput-dev
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo build
      - run: cargo build --example readme
      - run: cargo build --example test
      - run: cargo build --example using_config
  build_windows:
    name: Rust project
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo build
      - run: cargo build --example readme
      - run: cargo build --example test
      - run: cargo build --example using_config