Thomas Johnson
Thomas Johnson
As an alternative to changing defaults, would it be more palatable to allow users to specify a behavior for new projects in their [config.toml hierarchy](https://doc.rust-lang.org/cargo/reference/config.html#hierarchical-structure)? This is already an option...
That's good to know. I'll shop around for another reference emulator once the LLVM basics have been hammered out.
Yep, I've already started poking through it :) On Sat, Dec 31, 2011 at 2:31 PM, Grant Galitz < [email protected] > wrote: > > You know I have > https://github.com/grantgalitz/GameBoy-Online/blob/master/js/GameBoyCore.jswhich...
Looks like a good idea. I'll give it a try further down the line.
That's a definite chunk of complexity right there. Odds are that I'll just avoid caching any executable instructions in RAM. The real focus of this project is fiddling around with...
It'll be interesting to do some profiling on the effects of JIT with cache invalidation compared to interpreted execution.
Thanks for taking a look. I don't think the headers are the issue in this case, but it's definitely possible that the problem lies elsewhere, probably a weird interaction between...
I tried adding the `native-tls-alpn` feature, and all of my 0.12 tests are failing, rather than just the ones against the API. `thread 'figma_root_12' panicked at src/main.rs:23:59: called `Result::unwrap()` on...
With regards to HTTP version, I've tried forcing HTTP 1: ```rust #[tokio::test] async fn figma_api_root_http1_12() { let client = reqwest_12::Client::builder().http1_only().build().unwrap(); let res = client.get("https://api.figma.com/") .send() .await .unwrap(); assert_eq!(res.status(), 200, "Expected...
In case it helps anyone with the same issue, you can disable default features and enable rustls with: ```toml [dependencies] tiberius = { version = "0.12.2", default-features = false, features...