Simon Sapin
Simon Sapin
This is to let you know that your dependency https://crates.io/crates/kuchiki will not receive new versions. I’ve archived its source repository: https://github.com/kuchiki-rs/kuchiki#archived No immediate action is required as I’m not planning...
As found during https://github.com/apollographql/apollo-rs/pull/828. Current implementation: ```rust pub(crate) fn named_type(p: &mut Parser) { if let Some(TokenKind::Name) = p.peek() { let _g = p.start_node(SyntaxKind::NAMED_TYPE); name::name(p); } } ``` The caller has...
## Description Trying to use apollo-smith to generate random operations against an given type system, I ran into stack overflows. This seems to happen when a type can refer to...
In apollo-compiler 0.11 validation returns a `Vec` that can contain: * Any number of error-level diagnostics * A warning for enum value definitions with non-uppercase names * An "advice" for...
Split off from https://github.com/apollographql/apollo-rs/issues/608 The draft GraphQL spec adds a new feature: https://spec.graphql.org/draft/#sec-String-Value.Escape-Sequences > For legacy reasons, a [supplementary character](https://www.unicode.org/glossary#supplementary_character) may be escaped by two fixed-width unicode escape sequences forming...
# Objective This PR represents the outcome of discussions around how different length units should be interpreted when parsing CSS syntax, in particular https://github.com/DioxusLabs/taffy/pull/460#discussion_r1181525459. The doc-comment for `set_pixel_ratio` in `src/tree/taffy_tree/tree.rs`...
This is an incomplete work in progress, submitted in case someone wants to have a look at the approach. ~This requires and is based on top of https://github.com/DioxusLabs/taffy/pull/459, so consider...
This is a roadmap item (https://github.com/DioxusLabs/taffy/issues/345) that I’m interesting in working on. (Though I make no promise in terms of timeline or my future availability.) Below is an opinionated proposal...
This is to let you know that I’ve archived https://github.com/SimonSapin/rust-utf8, the source repository for https://crates.io/crates/utf-8 which you depend on. No action is required as I’m not planning the yank the...
With the switch to Hashbrow, `std::mem::size_of::()` on 64-bit platforms grew from 40 bytes to 56. (24 to 40 bytes with `BuildHasherDefault`.) In Servo’s DOM implementation we have types whose `size_of`...