#instant #system-time #web #time #api-bindings

web-time

Drop-in replacement for std::time for Wasm in browsers

7 releases (2 stable)

1.1.0 Mar 1, 2024
1.0.0 Jan 14, 2024
0.2.4 Dec 24, 2023
0.2.3 Oct 23, 2023
0.1.0 Mar 27, 2023

#17 in WebAssembly

Download history 52439/week @ 2024-01-05 56272/week @ 2024-01-12 66314/week @ 2024-01-19 77203/week @ 2024-01-26 88256/week @ 2024-02-02 100574/week @ 2024-02-09 113872/week @ 2024-02-16 129201/week @ 2024-02-23 131375/week @ 2024-03-01 137221/week @ 2024-03-08 129856/week @ 2024-03-15 147032/week @ 2024-03-22 139051/week @ 2024-03-29 119505/week @ 2024-04-05 135860/week @ 2024-04-12 121175/week @ 2024-04-19

542,730 downloads per month
Used in 1,256 crates (55 directly)

MIT/Apache

42KB
457 lines

web-time

Crates.io Version Live Build Status Docs.rs Documentation Main Documentation

Description

Complete drop-in replacement for std::time that works in browsers.

Currently Instant::now() and SystemTime::now() will simply panic when using the wasm32-unknown-unknown target. This implementation uses Performance.now() for Instant and Date.now() for SystemTime to offer a drop-in replacement that works in browsers.

At the same time the library will simply re-export std::time when not using the wasm32-unknown-unknown target and will not pull in any dependencies.

Additionally, if compiled with target-feature = "atomics" it will synchronize the timestamps to account for different context's, like web workers. See Performance.timeOrigin for more information.

Using -Ctarget-feature=+nontrapping-fptoint will improve the performance of Instant::now() and SystemTime::now(), but the vast majority of the time is still spent going through JS.

Target

This library specifically targets browsers, that support Performance.now(), with the wasm32-unknown-unknown target. Emscripten is not supported. WASI doesn't require support as it has it's own native API to deal with std::time.

Furthermore it depends on wasm-bindgen, which is required. This library will continue to depend on it until a viable alternative presents itself, in which case multiple ecosystems could be supported.

Note

Ticking during sleep

Currently a known bug is affecting browsers on operating system other then Windows. This bug prevents Instant from continuing to tick when the context is asleep. This doesn't necessarily conflict with Rusts requirements of Instant, but might still be unexpected.

See the MDN documentation on this for more information.

Context support

The implementation of Instant::now() relies on the availability of the Performance object, a lack thereof will cause a panic. This can happen if called from a worklet.

Usage

You can simply import the types you need:

use web_time::{Instant, SystemTime};

let now = Instant::now();
let time = SystemTime::now();

Features

serde

Implements serde::Deserialize and serde::Serialize for SystemTime.

MSRV

As this library heavily relies on wasm-bindgen the MSRV depends on it. At the point of time this was written the MSRV is 1.60.

Alternatives

instant Crates.io is a popular alternative! However the API it implements doesn't match std::time exactly.

Changelog

See the CHANGELOG file for details.

Contributing

See the CONTRIBUTING file for details.

Attribution

Inspiration was taken from the instant project.

Additional insight was taken from the time project.

License

Licensed under either of

at your option.

A majority of the code and documentation was taken from std::time. For license information see #License.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–355KB