├── .gitignore ├── AUTHORS.txt ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── Justfile ├── LICENSE.txt ├── README.md ├── examples ├── bad_yes.rs └── good_yes.rs ├── filters ├── Cargo.toml ├── Justfile ├── README.md └── src │ └── lib.rs ├── rust-toolchain ├── rustfmt-nightly.toml ├── rustfmt.toml ├── src └── lib.rs └── tests └── pipefail.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/README.md -------------------------------------------------------------------------------- /examples/bad_yes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/examples/bad_yes.rs -------------------------------------------------------------------------------- /examples/good_yes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/examples/good_yes.rs -------------------------------------------------------------------------------- /filters/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/filters/Cargo.toml -------------------------------------------------------------------------------- /filters/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/filters/Justfile -------------------------------------------------------------------------------- /filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/filters/README.md -------------------------------------------------------------------------------- /filters/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/filters/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /rustfmt-nightly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/rustfmt-nightly.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/pipefail.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrrlyn/calm_io/HEAD/tests/pipefail.rs --------------------------------------------------------------------------------