John-John Tedro
John-John Tedro
This adds information which is otherwise buried in issues such as #162 to the documentation of the relevant methods.
When using a fully qualified domain name like `google.com.` (note the trailing dot), reqwest uses the provided domain in verbatim when comparing the common name of the certificate (CN). For...
See for example: [`sqlite3_result_blob`](https://github.com/stainless-steel/sqlite3-sys/blob/main/src/base.rs#L2246). In sqlite3 these support special sentinel values which marks the value as transient, see: . This can only be done by coercing the sentinel value `-1`...
This adds a compiler which exists in parallel to the existing one. It's called the `v2` compiler and is currently incomplete. It performs indexing on lowering based on the lossless...
The following are items which are planned to be done for the 0.14 release: #### Change execution model * [x] Structurally shared values #663 * [x] Use a slot-based virtual...
It is hard to say whether this is intended behavior or not, but given a rule like this: ```rust // vim: ft=rust use lexer; use ast; grammar = { =>...
Seems like https://git.musl-libc.org/git/musl is down (504 Bad Gateway), meaning building this project from git no longer works. I'm not sure how to contact the musl project, so I'm opening an...
Serialization is potentially unsound since `Vec::set_len` is called before the vector is initialized
Hi. So I'm worried about this code location, and places like it: https://github.com/koute/speedy/blob/df80ac3f851db61d915eb759fa47dfe6b6a8c126/src/writable.rs#L201 The [safety per-requisite for calling `set_len`](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.set_len) is that the elements at `old_len..new_len` must be initialized. We could...
This currently does not work. See bincode-org/bincode#763