Results 21 issues of Enduriel

#### What is the purpose of this change? Add Support for [Filen](https://filen.io/) #### Was the change discussed in an issue or in the forum before? Discussed in issue #6728 ####...

new backend

Currently, given this rust code ```rs #[uniffi::export] pub trait MyTrait {} #[uniffi::export] pub struct MyStruct; #[uniffi::export] impl MyTrait for MyStruct { fn my_method(&self) { todo!() } } #[uniffi::export] pub fn...

Given the following rust code: ```rs #[derive(serde::Serialize, serde::Deserialize, tsify::Tsify)] #[serde(rename_all = "camelCase")] #[tsify(into_wasm_abi, from_wasm_abi)] pub struct Bar { content: String, } #[derive(serde::Serialize, serde::Deserialize, tsify::Tsify)] #[serde(rename_all = "camelCase")] #[tsify(into_wasm_abi, from_wasm_abi)] pub...

Thank you for this amazing library, it's made making a TS API for my rust crate a lot more managable! Given this rust code ```rs #[derive(Deserialize, Tsify)] pub struct A...

This was originally reported as a [cargo issue](https://github.com/rust-lang/cargo/issues/15750) where I was directed that this is likely a cmake issue, so making a new issue here. The original problem description is...

## 🐛 Bug description When passing `--no-pack` to wasm-pack, if an existing package.json is present in the out-dir, it will get deleted #### 🤔 Expected Behavior The existing package.json should...

adding ```toml [lib] crate-type = ["cdylib", "rlib", "staticlib"] ``` to the Cargo.toml of a crate inside my workspace makes flamegraph unable to recognize the crate as a valid target, it...

Is this something you would be interested in a PR for, or is there some other reason this hasn't been done yet? They definitely won't be as popular to use...

When trying to use reqwest to make a simple GET request with the WASM target on the browser after building with ```bash yarn build --target wasm32-wasip1-threads --esm ``` I get...

[`rustls-platform-verifier`](https://github.com/rustls/rustls-platform-verifier) is recommended over [`rustls-native-certs`](https://github.com/rustls/rustls-native-certs) by the team maintaining `rustls-native-certs`. From the readme: > Instead of this crate, we suggest using [rustls-platform-verifier](https://github.com/rustls/rustls-platform-verifier), which provides a more robust solution with a...

question
dependencies