Stephen Chung
Stephen Chung
I think there is a `no_time` feature...
It pulls it in but does not use it. I am not sure there is a way in `Cargo.toml` to explicitly omit a dependency when a feature is set. Do...
I just hesitate to do major surgery here as may break some build combinations.
I vaguely remember that it is possible to do a raw wasm build without wasm-bindgen or std-web by setting some compiler flags. Therefore the no-W+T combo you tested should have...
OK, it seems that the following new checks is failing CI: ```rust #[cfg(target_family = "wasm")] #[cfg(not(any(feature = "no_time", feature = "wasm-bindgen", feature = "stdweb")))] compile_error!("WASM targets have to use either...
@TrueDoctor OK, it seems the following CI has failed: ```sh cargo build --target wasm32-unknown-unknown --no-default-features ``` Looks like `Instant` is not included under this scenario, which is a _raw_ WASM...
> Yeah, but shouldn't that have also failed before then? I don't think so...
Rhai is not JavaScript. Therefore methods are not stored as properties in the hash map. `map.my_cool_function()` means `my_cool_function(map)`, in Rust style, not JavaScript style. Therefore, `map` has no property named...
Closing this issue for now. Feel free to reopen.
Well, `sync` was not intended for very fine-grained work. It is certainly course-grained. The main reason why the AST is required to be `Send` is because it can hold a...