Boscop

Results 547 comments of Boscop

Thanks, after talking on IRC I found out the correct quotation syntax and opened an issue: https://github.com/rust-lang/rust/issues/47909

But why does it work when I try to compile `foobar` (hello world) but not with that yew example? Shouldn't rustc also call emcc the same way for `foobar`?

Ok, and how can I print out how emcc is called when building `foobar`? I tried `cargo web build -vvvv` but it said only 1 verbosity level is allowed, why?...

I got it working on windows with a .cargo/config build script override and the dll from here: https://sourceforge.net/projects/libusb/files/ ```toml [target.x86_64-pc-windows-msvc.'usb-1.0'] rustc-link-search = ['D:\libs\64bit'] rustc-link-lib = ['libusb-1.0'] ```

I got it working on windows with a .cargo/config build script override and the dll from here: https://sourceforge.net/projects/libusb/files/ ```toml [target.x86_64-pc-windows-msvc.'usb-1.0'] rustc-link-search = ['D:\libs\64bit'] rustc-link-lib = ['libusb-1.0'] ```

Is it possible to use these bindings with the dll? https://sourceforge.net/projects/libusb-win32/

It should be possible to only include crates in the generated graph that are members of the current workspace. Is it already possible? If not, a flag for this should...

I don't really have a problem with passing `()` but I can't imagine that anyone would miss if the userdata param didn't exist... Usually I capture a std Sender and...