├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── bors.toml ├── examples └── inlining.rs ├── justfile ├── rustfmt.toml ├── src ├── lib.rs ├── symbol.rs └── tree.rs └── tests └── inlining.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/README.md -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- 1 | status = ["ci"] 2 | -------------------------------------------------------------------------------- /examples/inlining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/examples/inlining.rs -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/justfile -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | wrap_comments = true 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/symbol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/src/symbol.rs -------------------------------------------------------------------------------- /src/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/src/tree.rs -------------------------------------------------------------------------------- /tests/inlining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jswrenn/scoped-trace/HEAD/tests/inlining.rs --------------------------------------------------------------------------------