snailquote 0.3.1

Escape and unescape strings with shell-inspired quoting
Documentation
name: Rust
on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: "1"
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose --examples
    - name: Run tests
      run: cargo test --verbose --features unsafe_tests