├── .circleci └── config.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── panic.rs └── src └── lib.rs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/README.md -------------------------------------------------------------------------------- /examples/panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/examples/panic.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-log-panics/HEAD/src/lib.rs --------------------------------------------------------------------------------