reya · 1d I got other issue with the universal-time crate: ``` error: a time provider is required. Use `define_time_provider!(YourProvider)` in your binary crate. See: https://... Yuki Kishimoto @Yuki Kishimoto 1785146817 Yes, in no_std or WASM you have to define a time provider. You can find an example here: https://github.com/shadowylab/universal-time#with-no_std-or-wasm-unknownThe example just set a fake time, in your app you can get the real one using instant or webtime. 1