jclmnop
jclmnop
> I forked this library and created https://github.com/mattwilkinsonn/rust-claims so I can continue to use this library. It is available on crates.io - https://crates.io/crates/claims. Feel free to use this, at least...
+1 I'm getting the dreaded "can't find crate for `test`" error while working on an embedded project, can only fix it with global settings atm. For some reason putting the...
@gbj I'm already planning on doing a small CSR project to get more acquainted with the leptos framework before I use it for a much larger one; judging by the...
+1 for this In the meantime we'd have to just use `serde_json` and export the `.pkl` to `.json`, then manually define all the types/structs etc again in code (which I...
> Configs are pretty much raw data that can be serialized and deserialized with proper defaults. I'm not sure there are blockers making it impossible to support generics, but I...
> For folks that have noticed perf issues due to TLS, does this suit your use case? Being able to configure this from a higher level crate (e.g. `reqwest`) via...
> You should be able to just add tokio-rustls to your Cargo.toml. Of course, this creates annoying consequences if you add the wrong version of tokio-rustls to your Cargo.toml but...
> Instead, since we aren't allocating anything to construct CpuHeavyFutureExecutor::BlockInPlace or CpuHeavyFutureExecutor::SpawnBlocking, and runtime_flavor() is [quite cheap](https://docs.rs/tokio/latest/src/tokio/runtime/handle.rs.html#397-405), we can just call OnceCell::get() and, if None, decide which executor to use...