├── .cargo └── config.toml ├── .config ├── spellcheck.toml └── topic.dic ├── .github ├── FUNDING.yaml ├── dependabot.yaml ├── docsrs-error-1.60.txt ├── docsrs-error-nightly.txt ├── docsrs-error-stable.txt ├── upstream-sources.json └── workflows │ ├── audit.yaml │ ├── build.yaml │ ├── coverage-documentation.yaml │ ├── format.yaml │ ├── lint.yaml │ ├── merge.yaml │ ├── publish.yaml │ ├── spellcheck.yaml │ ├── test.yaml │ └── upstream.yaml ├── .gitignore ├── .prettierrc.toml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── .gitignore ├── benchmark.rs └── index.html ├── clippy.toml ├── rustfmt.toml ├── src ├── lib.rs ├── time │ ├── instant.rs │ ├── js.rs │ ├── mod.rs │ ├── serde.rs │ └── system_time.rs └── web.rs ├── taplo.toml ├── tests-crates ├── minimal-versions │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── resolver │ ├── .gitignore │ ├── Cargo.toml │ └── src │ └── lib.rs ├── tests-native ├── Cargo.toml └── src │ └── lib.rs ├── tests-web ├── Cargo.toml └── src │ └── lib.rs └── tests ├── atomic_failure.rs ├── atomic_success.rs ├── instant_failure_1.rs ├── instant_failure_2.rs ├── instant_success.rs ├── serde.rs ├── system_time_failure_1.rs ├── system_time_failure_2.rs ├── system_time_success.rs ├── traits.rs ├── util ├── mod.rs ├── std.rs └── web.rs └── web.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.config/spellcheck.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.config/spellcheck.toml -------------------------------------------------------------------------------- /.config/topic.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.config/topic.dic -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: [daxpedda] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/docsrs-error-1.60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/docsrs-error-1.60.txt -------------------------------------------------------------------------------- /.github/docsrs-error-nightly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/docsrs-error-nightly.txt -------------------------------------------------------------------------------- /.github/docsrs-error-stable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/docsrs-error-stable.txt -------------------------------------------------------------------------------- /.github/upstream-sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/upstream-sources.json -------------------------------------------------------------------------------- /.github/workflows/audit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/audit.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/coverage-documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/coverage-documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/format.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/merge.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/spellcheck.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.github/workflows/upstream.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/.prettierrc.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/README.md -------------------------------------------------------------------------------- /benches/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/benches/.gitignore -------------------------------------------------------------------------------- /benches/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/benches/benchmark.rs -------------------------------------------------------------------------------- /benches/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/benches/index.html -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/clippy.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/time/instant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/time/instant.rs -------------------------------------------------------------------------------- /src/time/js.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/time/js.rs -------------------------------------------------------------------------------- /src/time/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/time/mod.rs -------------------------------------------------------------------------------- /src/time/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/time/serde.rs -------------------------------------------------------------------------------- /src/time/system_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/time/system_time.rs -------------------------------------------------------------------------------- /src/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/src/web.rs -------------------------------------------------------------------------------- /taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/taplo.toml -------------------------------------------------------------------------------- /tests-crates/minimal-versions/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests-crates/minimal-versions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-crates/minimal-versions/Cargo.toml -------------------------------------------------------------------------------- /tests-crates/minimal-versions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-crates/minimal-versions/src/lib.rs -------------------------------------------------------------------------------- /tests-crates/resolver/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests-crates/resolver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-crates/resolver/Cargo.toml -------------------------------------------------------------------------------- /tests-crates/resolver/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-crates/resolver/src/lib.rs -------------------------------------------------------------------------------- /tests-native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-native/Cargo.toml -------------------------------------------------------------------------------- /tests-native/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-native/src/lib.rs -------------------------------------------------------------------------------- /tests-web/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-web/Cargo.toml -------------------------------------------------------------------------------- /tests-web/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests-web/src/lib.rs -------------------------------------------------------------------------------- /tests/atomic_failure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/atomic_failure.rs -------------------------------------------------------------------------------- /tests/atomic_success.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/atomic_success.rs -------------------------------------------------------------------------------- /tests/instant_failure_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/instant_failure_1.rs -------------------------------------------------------------------------------- /tests/instant_failure_2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/instant_failure_2.rs -------------------------------------------------------------------------------- /tests/instant_success.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/instant_success.rs -------------------------------------------------------------------------------- /tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/serde.rs -------------------------------------------------------------------------------- /tests/system_time_failure_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/system_time_failure_1.rs -------------------------------------------------------------------------------- /tests/system_time_failure_2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/system_time_failure_2.rs -------------------------------------------------------------------------------- /tests/system_time_success.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/system_time_success.rs -------------------------------------------------------------------------------- /tests/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/traits.rs -------------------------------------------------------------------------------- /tests/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/util/mod.rs -------------------------------------------------------------------------------- /tests/util/std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/util/std.rs -------------------------------------------------------------------------------- /tests/util/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/util/web.rs -------------------------------------------------------------------------------- /tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxpedda/web-time/HEAD/tests/web.rs --------------------------------------------------------------------------------