Simon Sapin
Simon Sapin
Currently we provide: * A full server that listens for a network requests of various kinds, typically for production use * A Tower `Service` for handling GraphQL requests with high-level...
Split from https://github.com/apollographql/router/issues/1152
CI is configured like this: https://github.com/apollographql/router/blob/ef62de020970e87dd77572fbb1b1c2b72542b575/.circleci/config.yml#L8-L9 https://github.com/apollographql/router/blob/ef62de020970e87dd77572fbb1b1c2b72542b575/.circleci/config.yml#L183-L186 to run this script: https://github.com/CircleCI-Public/rust-orb/blob/70397fd8c966134d9a2045a176a62ea99a4d3e76/src/scripts/install.sh#L3-L10 Note that if the `version` parameter was set to a string that is not `stable`, then `rustup.sh` would...
**Describe the bug** `test_jaeger_tracing` fails on my machine **To Reproduce** Steps to reproduce the behavior: 1. Run `docker compose up --build` 2. In another terminal, run `cargo xtask test` 3....
I’d like to parse a `Mime` value from a string according to the algorithm at https://mimesniff.spec.whatwg.org/#parsing-a-mime-type. (Test cases in JSON are available at https://github.com/w3c/web-platform-tests/tree/master/fetch/data-urls.) I can implement that algorithm outside...
Servo would like to implement CSS on top of font-kit. The spec (relevant bits below): * Is very specific about (case-insensitive) string comparison for font family names * Requires accepting...
In CSS, the `serif`, `sans-serif`, `cursive`, `fantasy`, and `monospace` keywords when used without quotes have a different meaning than other keywords (which are space-joined into a single string) or quoted...
In an empty directory, run: ```sh cargo new --lib a cargo new --lib b cargo new --lib a/c echo 'b = {path = "../b"}' >> a/Cargo.toml echo 'c = {path...
https://blog.rust-lang.org/2018/10/30/help-test-rust-2018.html > The first step is to run `cargo fix`: > > ``` > $ cargo fix --edition > ``` > > This will check your code, and automatically fix...
The `unsafe`-free code below creates two `&mut` references to the same buffer at the same time, despite claim of the contrary in https://github.com/bitvecto-rs/bitvec/blob/main/book/data-structures/bitslice.md#macro-constructor. Multiple calls to a function accessing a...