snailquote 0.3.1

Escape and unescape strings with shell-inspired quoting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## v0.3.1

### Changes

* Additional characters that have special meanings in shells are now quoted.
  Specifically, the following characters will now trigger quoting: `;`, `~`,
  `(`, `)`, `&`, `$`, `#`, `>`, `<`, `|`.

## v0.3.0

### Changes

* Errors compatible with the `std::error::Error` trait are returned as the
  error type in all results now. Previously all results used `String` for the
  error variant. This change is backwards incompatible, but allows handling
  errors from the library much more easily and correctly. Please consult the
  generated documentation for full details on the new error types.