XiaoYangShawn
XiaoYangShawn
**Troubleshoot** - [x] Before creating an issue, please check: https://typicode.github.io/husky/#/?id=troubleshoot If you're migrating from husky 4, see: https://typicode.github.io/husky/#/?id=migrate-from-v4-to-v7 **Context** Please describe your issue and provide some context: I've this pre-commit...
### Summary I'd like to create rust binding for something like this: ```typescript export namespace Math { type Vector3 = { "x": number, "y": number, "z": number }; } ```...
I'm trying to use `wasm-bindgen-rayon` in unit tests by `wasm-bindgen-test`, here is an demo project: src/lib.rs ```rust use rayon::iter::{IntoParallelRefIterator, ParallelIterator}; use wasm_bindgen::prelude::*; #[macro_export] macro_rules! log { ($($arg:tt)*) => ( web_sys::console::log_1(&format_args!($($arg)*).to_string().into())...
Is it possible to run the script for a range of commits from command line? Something like: ```bash commit-msg-linter sha1 sha2 ``` So it can be ran from CI to...
I'm testing my rust project with dinghy 0.6.0 on iOS and I think there's a duplicate executable file: ```bash $ du -sh * 13M Dinghy 4.0K Info.plist 24K _CodeSignature 13M...
For rust wasm projects we use [wasm-pack](https://github.com/rustwasm/wasm-pack) to build and run unit tests. Common commands including: ``` wasm-pack build wasm-pack test ``` Is it possible to run `wasm-pack` commands with...
Is it possible to convert rust document comments into [C# style](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/documentation-comments) so we can generate C# API document with it? for instance: ```rust /// This function has documentation. #[ffi_function] #[no_mangle]...
For instance in rust we have ```rust #[ffi_type] #[repr(C)] pub struct Vec2 { pub x: f32, pub y: f32, } #[ffi_function] #[no_mangle] pub extern "C" fn my_function(input: Vec2) -> Vec2...
I'm working on a project which is used by multiple clients, they want different features and some of them has purchased the source code. I can't just publish different binaries...
It's nice to have a graphic library that works as Unity plugin. I'm trying to write a fluid simulation/rendering lib that is supposed to work both as a standalone executable...