Boxiu Lee
Boxiu Lee
I also need this feature, I'm using a global variable linking to the stackmap section in static compile mode, which however causing segmentation fault in jited code.
> I installed your nuget package. When I add @using Blazor.Cropper, I get an error. It can't find the namespace. That's weird. Could you provide a sample project?
Hi @brauerj-gc , thanks for reporting this issue. This seems like a bug in dotnet runtime (https://github.com/dotnet/aspnetcore/issues/40033), could you try the workaround described there? Unfortunately, I am currently tied up...
Hi [tomahutbui](https://github.com/tomahutbui), sorry for my late reply. Seems it's an ImageSharp issue. Blazor.Cropper relies on [ImageSharp](https://github.com/SixLabors/ImageSharp) to provide pure c# crop support. So unfortunately, we cannot fix this issue until...
Hi @Velociapcior , an application targeting .Net 7 should be able to use a nuget package targeting .Net 6 just fine. As .Net 7 is not a LTS version, we...
facing same issue using v0.12.0 on macOS, with no output. environment: wasm-pack version: 0.12.0 rustc version: 1.69.0 macOS
> facing same issue using v0.12.0 on macOS, with no output. > > environment: wasm-pack version: 0.12.0 rustc version: 1.69.0 macOS Okey, I found that's probably a network issue. After...
I'm facing this issue too. It happens when I build my rust project. I tried to add `**/target` to `search.exclude`, the issue persists. Seems like this is caused by the...
Async to Iterator translate: ```pl async fn test_async() Future { let a = await fn_async(); return a; } ``` desugar ```pl gen fn test_async_iter() Iterator { let statemachine = fn_async();...
# Async 和rust不一样,我们的只要跑了async函数就会开始运行 ```code async fn task1: ret await task2 async fn task2: await task3 ret task4 let t = await task1 await task5(t) async fn task5(t): await t async...