├── .cargo └── config.toml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── pull_request_template.md └── workflows │ ├── clippy.yml │ ├── rustfmt.yml │ ├── spellcheck.yml │ └── test.yml ├── .gitignore ├── .rustfmt.toml ├── .typos.toml ├── .vimrc ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE-MPL2 ├── Makefile ├── README.md ├── benches.txt ├── crates ├── nursery │ ├── Cargo.toml │ └── lib.rs └── test_edition2018 │ ├── Cargo.toml │ └── lib.rs ├── examples ├── README.md ├── common │ └── mod.rs ├── named.rs ├── singlethread.rs └── struct-log-self.rs ├── src ├── key │ ├── dynamic.rs │ ├── dynamic_nostd.rs │ ├── mod.rs │ └── static.rs ├── lib.rs ├── prelude.rs └── tests.rs └── tests ├── issue364.rs └── prelude_conflicts.rs /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | paths = [ "." ] 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Make sure to: 2 | 3 | * [ ] Add an entry to CHANGELOG.md (if necessary) 4 | -------------------------------------------------------------------------------- /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.github/workflows/rustfmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.github/workflows/rustfmt.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 80 2 | reorder_imports = true 3 | -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.typos.toml -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/.vimrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/LICENSE-MPL2 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/README.md -------------------------------------------------------------------------------- /benches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/benches.txt -------------------------------------------------------------------------------- /crates/nursery/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/crates/nursery/Cargo.toml -------------------------------------------------------------------------------- /crates/nursery/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/crates/nursery/lib.rs -------------------------------------------------------------------------------- /crates/test_edition2018/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/crates/test_edition2018/Cargo.toml -------------------------------------------------------------------------------- /crates/test_edition2018/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/crates/test_edition2018/lib.rs -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/examples/common/mod.rs -------------------------------------------------------------------------------- /examples/named.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/examples/named.rs -------------------------------------------------------------------------------- /examples/singlethread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/examples/singlethread.rs -------------------------------------------------------------------------------- /examples/struct-log-self.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/examples/struct-log-self.rs -------------------------------------------------------------------------------- /src/key/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/key/dynamic.rs -------------------------------------------------------------------------------- /src/key/dynamic_nostd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/key/dynamic_nostd.rs -------------------------------------------------------------------------------- /src/key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/key/mod.rs -------------------------------------------------------------------------------- /src/key/static.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/key/static.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/src/tests.rs -------------------------------------------------------------------------------- /tests/issue364.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/tests/issue364.rs -------------------------------------------------------------------------------- /tests/prelude_conflicts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slog-rs/slog/HEAD/tests/prelude_conflicts.rs --------------------------------------------------------------------------------