Andrew Gauger
Andrew Gauger
I installed ruby 2.4 using https://medium.com/ruby-on-rails-web-application-development/how-to-install-rubyonrails-on-windows-7-8-10-complete-tutorial-2017-fc95720ee059 msys2 with `pacman -S base-devel mingw-w64-x86_64-toolchain` rustc --version 1.23.0-nightly `rake build` returns HelixRuntime::MissingDllError: Unable to find helix-runtime-0-7-2.dll in $PATH. I have c:\ruby24-x64\lib\ruby\gems\2.4.0\helix_runtime-0.7.3\ext\helix_runtime\native that includes...
https://travis-ci.com/rust-lang-nursery/error-chain/jobs/205173078 | 100 | Symbol::Dladdr(ref s) => return s.addr(), | ^^^^^^^^ expected enum `libc::c_void`, found enum `std::os::raw::c_void` | = note: expected type `core::option::Option` found type `core::option::Option` error[E0308]: mismatched types
https://travis-ci.com/rust-lang-nursery/error-chain/jobs/240939141#L293 error: a method with this name may be added to the standard library in the future --> src/lib.rs:657:41 | 657 | if let Some(backtrace) = self.0.backtrace() { | ^^^^^^^^^...
https://travis-ci.com/rust-lang-nursery/error-chain/jobs/240939148#L279
So `quick_main` was useful before Rust [1.26](https://blog.rust-lang.org/2018/05/10/Rust-1.26.html#main-can-return-a-result), but now is there a use case for it? Should we deprecate its use in `0.13`?
| | | | ------------- | ------------- | | Crates | std, crossbeam_channel | | Section | 4.3 Sharing data between threads | - shared ownership with `Arc` - shared...
| | | | ------------- | ------------- | | Crates | reqwest | | Section | 17.4.3 Web Authentication | A new series for Web Authentication should be created. This...
We ignored and filtered the headers recipe, but now `reqwest` headers work. https://github.com/rust-lang-nursery/rust-cookbook/blob/master/src/web/clients/requests/header.md https://stackoverflow.com/a/47912021/5586783 https://docs.rs/reqwest/0.10.6/reqwest/header/index.html
We are not doing any encryption in the cookbook. Should we create recipes for encrypting & decrypting data/streams?