├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── sample.txt ├── src ├── lib.rs ├── main.rs └── six.rs-snippet └── tests └── skeptic.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/README.md -------------------------------------------------------------------------------- /sample.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/six.rs-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulkernfeld/global-data-in-rust/HEAD/src/six.rs-snippet -------------------------------------------------------------------------------- /tests/skeptic.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs")); --------------------------------------------------------------------------------