Ben
Ben
Thanks for writing this book! [Related issue here](https://github.com/rustwasm/book/issues/17) I'm 100% new to web stuff, and understand this book isn't there for that. I raise this issue, as I hope it...
#513 [Relevant discussion](https://github.com/seed-rs/seed/pull/513#discussion_r467563396) The referred to PR was created in response to `fetch::Response` breaking my workflow when a `Message` had it in an assosciated type. For example: ```rust #[derive(Debug)] enum...
See #506 Currently, the output of `log!` is not Just Right™ due to manner in which Rust and JS interact (to my understanding). Though things are in a good place...
In the `fetch()` example in documentation: ```rust async fn send_message(new_message: String) -> fetch::Result { Request::new(get_request_url()) .method(Method::Post) .json(&shared::SendMessageRequestBody { text: new_message })? .fetch() .await? .check_status()? .json() .await } ``` Similarly, you...
Copied over from my original [personal project](https://github.com/Ben-PH/seL4_rust-doc/tree/42ce1e43f45ed4b7654efd02a09a19e4d6444150) with some minor edits appropriate to it now existing in the upstream codebase I've marked this as a draft. Up to this point,...
#### Bug In brief, `librocksdb-sys` is effectively uncached in our CI, though it's based on [this documentation](https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci) See also the [cargo issue](https://github.com/rust-rocksdb/rust-rocksdb/blob/86d983987e7cafce90ad8a147b0b325e6007eba6/librocksdb-sys/build.rs#L306) #### Reproduction 1. Make a minimalist `hello, world!`...
The example [the Server Basics](https://actix.rs/docs/server/) are as follows right now: ```rust use actix_web::{web, App, HttpResponse, HttpServer}; fn main() { let sys = actix_rt::System::new("example"); HttpServer::new(|| { App::new().route("/", web::get().to(|| HttpResponse::Ok())) }) .bind("127.0.0.1:8088")...
Here is the display using `ncdu`: ``` --- /path/to/projects/shader_brot ------------------------------------------------------------------------ /.. 1.1 GiB [##########] /target 216.0 KiB [ ] /.git 116.0 KiB [ ] Cargo.lock 20.0 KiB [ ] LICENSE...
The use of 'heap' for labelling the data structure clashes with dynamic memory 'heap'. This is purely a naming convention change, and should have no affect on implementation.
I'm not familiar enough with this projects finer details and intent behind `src/native/heap.rs`, so my assumptions may be a bit off. I have, however, recently been doing some work that...