├── .circleci └── config.yml ├── .github └── dependabot.yml ├── .gitignore ├── Cargo.toml ├── README.md ├── examples └── simple.rs ├── src ├── lib.rs ├── serde_impl.rs └── source │ ├── manual.rs │ ├── mod.rs │ ├── wall_ms.rs │ └── wall_ns.rs └── tests └── clocks.rs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/serde_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/serde_impl.rs -------------------------------------------------------------------------------- /src/source/manual.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/source/manual.rs -------------------------------------------------------------------------------- /src/source/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/source/mod.rs -------------------------------------------------------------------------------- /src/source/wall_ms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/source/wall_ms.rs -------------------------------------------------------------------------------- /src/source/wall_ns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/src/source/wall_ns.rs -------------------------------------------------------------------------------- /tests/clocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noncrab/hybrid-clocks/HEAD/tests/clocks.rs --------------------------------------------------------------------------------