aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* gfx: font_list: Fix OpenHarmony build (#32466)Jonathan Schwender2024-06-101-8/+4
| | | | Adapt changes from 1c9120c293cc16c11637feb6003117d4093642b5 to the OpenHarmony font_list.rs.
* Fix missing alpha value when using CompositeTarget::Fbo (#32453)Ngo Iok Ui (Wu Yu Wei)2024-06-101-2/+2
|
* Update web-platform-tests to revision ↵Servo WPT Sync2024-06-09714-20203/+24491
| | | | b'68f7e630c2646830a3ee274e21a3efcb001fbd65' (#32464)
* webgpu: Enable gles support (#32452)Hieu Do2024-06-093-1/+22
|
* build(deps): bump xkeysym from 0.2.0 to 0.2.1 (#32462)dependabot[bot]2024-06-071-2/+2
| | | | | | | | | | | | | | | | Bumps [xkeysym](https://github.com/notgull/xkeysym) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/notgull/xkeysym/releases) - [Changelog](https://github.com/rust-windowing/xkeysym/blob/master/CHANGELOG.md) - [Commits](https://github.com/notgull/xkeysym/compare/v0.2.0...v0.2.1) --- updated-dependencies: - dependency-name: xkeysym dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump cc from 1.0.98 to 1.0.99 (#32461)dependabot[bot]2024-06-071-3/+3
| | | | | | | | | | | | | | | Bumps [cc](https://github.com/rust-lang/cc-rs) from 1.0.98 to 1.0.99. - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.98...1.0.99) --- updated-dependencies: - dependency-name: cc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump dtoa-short from 0.3.4 to 0.3.5 (#32460)dependabot[bot]2024-06-071-2/+2
| | | | | | | | | | | | | | Bumps [dtoa-short](https://github.com/upsuper/dtoa-short) from 0.3.4 to 0.3.5. - [Commits](https://github.com/upsuper/dtoa-short/commits) --- updated-dependencies: - dependency-name: dtoa-short dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Don't shrink table columns when handling cells with greater spanning (#32458)Oriol Brufau2024-06-0720-45/+2
| | | | | | | | | | | | | For example: ```html <table border="1"> <tr> <td></td> <td></td> </tr> <tr> <td colspan="2"></td> </tr> </table> ``` We should initially size the columns according to the cells in the first row since they have a span of 1. Then we handle the cell in the second row with a span of 2, this should be able to increase the size of the columns, but never decrease them.
* layout: Properly size absolutely positioned tables (#32447)Martin Robinson2024-06-077-60/+15
| | | Co-authored-by: Oriol Brufau <obrufau@igalia.com>
* Add a workaround for actions/runner-images#10001 (#32456)Martin Robinson2024-06-071-0/+3
| | | | Until GitHub updates their runner images, this workaround should allow the bots to work.
* build(deps): bump xml5ever from 0.18.0 to 0.18.1 (#32446)dependabot[bot]2024-06-0659-120/+2
| | | | | | | | | | | | | | Bumps [xml5ever](https://github.com/servo/html5ever) from 0.18.0 to 0.18.1. - [Commits](https://github.com/servo/html5ever/compare/xml5ever-v0.18.0...xml5ever-x0.18.1) --- updated-dependencies: - dependency-name: xml5ever dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump etagere from 0.2.11 to 0.2.12 (#32444)dependabot[bot]2024-06-051-2/+2
| | | | | | | | | | | | | | Bumps [etagere](https://github.com/nical/etagere) from 0.2.11 to 0.2.12. - [Commits](https://github.com/nical/etagere/commits) --- updated-dependencies: - dependency-name: etagere dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump tar from 0.4.40 to 0.4.41 (#32445)dependabot[bot]2024-06-051-3/+3
| | | | | | | | | | | | | | Bumps [tar](https://github.com/alexcrichton/tar-rs) from 0.4.40 to 0.4.41. - [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.40...0.4.41) --- updated-dependencies: - dependency-name: tar dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* layout: Don't default to fallback fonts for spaces (#32442)Martin Robinson2024-06-053-5/+1
| | | | | | | | | | | | Previously, when deciding the font for a space, preference was given to the previous used font. This could means that the font chosen was a fallback font instead of the first font that supporting the space character in the font preference list. This caused an issue rendering emojis surrounded by spaces with "Noto Color Emoji" which has a space character the same size as the emoji, leading to too much spacing between them. Co-authored-by: Rakhi Sharma <atbrakhi@igalia.com>
* Remove unused items in gfx (#32423)Ngo Iok Ui (Wu Yu Wei)2024-06-052-7/+0
|
* Fix getComputedStyle for width and height (#32437)Oriol Brufau2024-06-046-25/+35
| | | | | It was providing a length whenever the element generates a box. However, these properties don't apply to non-replaced inlines, so the computed value should be provided instead.
* build(deps): bump unicode-width from 0.1.12 to 0.1.13 (#32439)dependabot[bot]2024-06-041-2/+2
| | | | | | | | | | | | | | Bumps [unicode-width](https://github.com/unicode-rs/unicode-width) from 0.1.12 to 0.1.13. - [Commits](https://github.com/unicode-rs/unicode-width/compare/v0.1.12...v0.1.13) --- updated-dependencies: - dependency-name: unicode-width dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump hyper from 0.14.28 to 0.14.29 (#32440)dependabot[bot]2024-06-041-3/+3
| | | | | | | | | | | | | | | | Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.28 to 0.14.29. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.29/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.28...v0.14.29) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump etagere from 0.2.10 to 0.2.11 (#32438)dependabot[bot]2024-06-041-2/+2
| | | | | | | | | | | | | | Bumps [etagere](https://github.com/nical/etagere) from 0.2.10 to 0.2.11. - [Commits](https://github.com/nical/etagere/commits) --- updated-dependencies: - dependency-name: etagere dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump wayland-cursor from 0.31.1 to 0.31.3 (#32435)dependabot[bot]2024-06-041-5/+5
| | | | | | | | | | | | | | | | Bumps [wayland-cursor](https://github.com/smithay/wayland-rs) from 0.31.1 to 0.31.3. - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) --- updated-dependencies: - dependency-name: wayland-cursor dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump polling from 3.7.0 to 3.7.1 (#32434)dependabot[bot]2024-06-031-2/+2
| | | | | | | | | | | | | | | | Bumps [polling](https://github.com/smol-rs/polling) from 3.7.0 to 3.7.1. - [Release notes](https://github.com/smol-rs/polling/releases) - [Changelog](https://github.com/smol-rs/polling/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/polling/compare/v3.7.0...v3.7.1) --- updated-dependencies: - dependency-name: polling dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump proc-macro2 from 1.0.84 to 1.0.85 (#32433)dependabot[bot]2024-06-031-2/+2
| | | | | | | | | | | | | | | Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.84 to 1.0.85. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.84...1.0.85) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* base: Remove `ucd` dependency (#32424)Martin Robinson2024-06-0318-98/+832
| | | | | | | | | | | | | | Remove the `ucd` dependency which has not been updated in 8 years. In addition, replace it with a generated UnicodeBlock enum which reflects the modern Unicode standard. This is generated via a Python script which is included in the repository. The generation is not part of the build process, because the Unicode database is hosted on the web and it does not change the frequently. This is done instead of bringing in the more up-to-date `unicode_blocks` dependency. `unicode_blocks` defines each block as constant, which means that they cannot be used in match statements -- which we do in Servo. Co-authored-by: Lauryn Menard <lauryn.menard@gmail.com>
* layout: Add a `InlineFormattingContextBuilder` (#32415)Martin Robinson2024-06-0312-802/+961
| | | | | | | | | | | | | | | | The main change here is that collapsed and `text-transform`'d text is computed as it's processed by DOM traversal. This single transformed text is stored in the root of the `InlineFormattingContext`. This will eventually allow performing linebreaking and shaping of the entire inline formatting context at once. Allowing for intelligent processing of linebreaking and also shaping across elements. This matches more closely what LayoutNG does. This shouldn't have any (or negligable) behavioral changes, but will allow us to prevent linebreaking inside of clusters in a followup change. Co-authored-by: Rakhi Sharma <atbrakhi@igalia.com>
* mach: Read .servobuild as utf-8 (#32431)Jonathan Schwender2024-06-031-1/+1
| | | | | | Without this on my windows machine `open` seems to default to the `gbk` codec, and then fails to read the file if it contains Windows style paths (e.g. both `ndk = D:\my_path` or `ndk = D:\\my_path` cause the `f.read()` to fail ).
* Document library crates only in mach doc (#32429)Ngo Iok Ui (Wu Yu Wei)2024-06-021-0/+3
| | | | | | | | | * Document library crates only in mach doc * Fix typo --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* Update web-platform-tests to revision ↵Servo WPT Sync2024-06-02391-1453/+6901
| | | | b'17375f41ccf41e081764d2786ec535dede108c47' (#32426)
* Update to Rust 1.78 (#32217)Samson2024-06-019-38/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update to rust 1.78 * Update crown for rust 1.78 * rust 1.78 is now stable * Update for nix * Update comment Co-authored-by: Martin Robinson <mrobinson@igalia.com> * Update support/crown/src/common.rs * Update support/crown/Cargo.toml * Update support/crown/src/common.rs * Fix ipc problem * Update ipc-channel to 0.18.1 * fixed fixme --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* build(deps): bump tokio from 1.37.0 to 1.38.0 (#32418)dependabot[bot]2024-06-011-4/+4
| | | | | | | | | | | | | | | Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.37.0 to 1.38.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* webgpu: Parse and forward backend prefs to wgpu (#32410)Hieu Do2024-05-313-2/+17
| | | Signed-off-by: Hieu Do <hieudn.uh@gmail.com>
* build(deps): bump wayland-client from 0.31.2 to 0.31.3 (#32420)dependabot[bot]2024-05-311-2/+2
| | | | | | | | | | | | | | | | Bumps [wayland-client](https://github.com/smithay/wayland-rs) from 0.31.2 to 0.31.3. - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) --- updated-dependencies: - dependency-name: wayland-client dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump wayland-backend from 0.3.3 to 0.3.4 (#32419)dependabot[bot]2024-05-311-9/+9
| | | | | | | | | | | | | | | | Bumps [wayland-backend](https://github.com/smithay/wayland-rs) from 0.3.3 to 0.3.4. - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) --- updated-dependencies: - dependency-name: wayland-backend dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump wayland-scanner from 0.31.1 to 0.31.2 (#32417)dependabot[bot]2024-05-311-2/+2
| | | | | | | | | | | | | | | | Bumps [wayland-scanner](https://github.com/smithay/wayland-rs) from 0.31.1 to 0.31.2. - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/compare/wayland-scanner-v0.31.1...wayland-client-v0.31.2) --- updated-dependencies: - dependency-name: wayland-scanner dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump bytemuck_derive from 1.6.1 to 1.7.0 (#32395)dependabot[bot]2024-05-311-2/+2
| | | | | | | | | | | | | | | Bumps [bytemuck_derive](https://github.com/Lokathor/bytemuck) from 1.6.1 to 1.7.0. - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/bytemuck_derive-v1.6.1...bytemuck_derive-v1.7.0) --- updated-dependencies: - dependency-name: bytemuck_derive dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump compiletest_rs from 0.10.2 to 0.11.0 (#32408)dependabot[bot]2024-05-312-13/+40
| | | | | | | | | | | | | | | Bumps [compiletest_rs](https://github.com/Manishearth/compiletest-rs) from 0.10.2 to 0.11.0. - [Release notes](https://github.com/Manishearth/compiletest-rs/releases) - [Commits](https://github.com/Manishearth/compiletest-rs/compare/v0.10.2...v0.11.0) --- updated-dependencies: - dependency-name: compiletest_rs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump icu_segmenter from 1.4.0 to 1.5.0 (#32398)dependabot[bot]2024-05-311-16/+16
| | | | | | | | | | | | | | | | Bumps [icu_segmenter](https://github.com/unicode-org/icu4x) from 1.4.0 to 1.5.0. - [Release notes](https://github.com/unicode-org/icu4x/releases) - [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md) - [Commits](https://github.com/unicode-org/icu4x/compare/icu@1.4.0...icu@1.5.0) --- updated-dependencies: - dependency-name: icu_segmenter dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* clippy: Fix warnings in `components/layout_2020/flow/text_run.rs` (#32393)Farid2024-05-311-1/+1
| | | | | | | | | | | | | * clippy: Fix warnings in `components/layout_2020/flow/text_run.rs` Signed-off-by: Jujumba <far77578@gmail.com> * clippy: Fix warnings in `components/layout_2020/flow/text_run.rs` Signed-off-by: Jujumba <far77578@gmail.com> --------- Signed-off-by: Jujumba <far77578@gmail.com>
* clippy: Fix warnings in `components/webgpu/wgpu_thread.rs` (#32392)Farid2024-05-311-30/+25
| | | | | | | | | | | | | * clippy: Fix warnings in `components/webgpu/wgpu_thread.rs` Signed-off-by: Jujumba <far77578@gmail.com> * clippy: `test-tidy` failure in `components/webgpu/wgpu_thread.rs` Signed-off-by: Jujumba <far77578@gmail.com> --------- Signed-off-by: Jujumba <far77578@gmail.com>
* Bump deps that only failed due to CI issues (#32414)Delan Azabani2024-05-311-12/+12
| | | | | | | | | | | | | | | * build(deps): bump zerovec from 0.10.1 to 0.10.2 (closes #32394) * build(deps): bump zerofrom-derive from 0.1.3 to 0.1.4 (closes #32396) * build(deps): bump writeable from 0.5.4 to 0.5.5 (closes #32397) * build(deps): bump tinystr from 0.7.5 to 0.7.6 (closes #32400) * build(deps): bump yoke-derive from 0.7.3 to 0.7.4 (closes #32402) --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* ci: Disable legacy layout tests when landing PRs (#32405)Martin Robinson2024-05-311-1/+1
| | | | | This disables Layout 2013 checks when landing PRs. This means that results might get out of sync for 2013, but they should be updated weekly during WPT imports.
* font_template.rs: apply clippy lints (#32391)Farid2024-05-301-7/+7
| | | Signed-off-by: Jujumba <far77578@gmail.com>
* layout: Add support for `white-space-collapse: break-spaces` (#32388)Martin Robinson2024-05-3096-537/+410
| | | | | | | | | | | | | | This change adds support for `white-space-collapse: break-spaces` and adds initial parsing support for `overflow-wrap` and `word-break`. The later two properties are not fully supported, only in their interaction with `break-spaces`. This is a preliminary change preparing to implement them. In addition, `break_and_shape` is now forked and added to Layout 2020. This function is going to change a lot soon and forking is preparation for this. More code that is only used by Layout 2013 is moved from `gfx` to that crate. Co-authored-by: Rakhi Sharma <atbrakhi@igalia.com>
* build(deps): bump zerofrom from 0.1.3 to 0.1.4 (#32403)dependabot[bot]2024-05-291-2/+2
| | | | | | | | | | | | | | | | Bumps [zerofrom](https://github.com/unicode-org/icu4x) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/unicode-org/icu4x/releases) - [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md) - [Commits](https://github.com/unicode-org/icu4x/commits) --- updated-dependencies: - dependency-name: zerofrom dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump backtrace from 0.3.71 to 0.3.72 (#32389)dependabot[bot]2024-05-281-8/+8
| | | | | | | | | | | | | | | Bumps [backtrace](https://github.com/rust-lang/backtrace-rs) from 0.3.71 to 0.3.72. - [Release notes](https://github.com/rust-lang/backtrace-rs/releases) - [Commits](https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72) --- updated-dependencies: - dependency-name: backtrace dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Move `RenderingContext` to `webrender_traits` (#32386)Martin Robinson2024-05-2814-14/+17
| | | | | | The `gfx_traits` crate is gradually become just about text and fonts and this is one of the few things there that is standing in the way of this. Eventually `webrender_traits` will be the general cross-process compositor API, so this sort of makes sense as well.
* build(deps): bump clang-sys from 1.7.0 to 1.8.0 (#32384)dependabot[bot]2024-05-281-6/+6
| | | | | | | | | | | | | | | | Bumps [clang-sys](https://github.com/KyleMayes/clang-sys) from 1.7.0 to 1.8.0. - [Release notes](https://github.com/KyleMayes/clang-sys/releases) - [Changelog](https://github.com/KyleMayes/clang-sys/blob/master/CHANGELOG.md) - [Commits](https://github.com/KyleMayes/clang-sys/commits) --- updated-dependencies: - dependency-name: clang-sys dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump proc-macro2 from 1.0.83 to 1.0.84 (#32385)dependabot[bot]2024-05-271-2/+2
| | | | | | | | | | | | | | | Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.83 to 1.0.84. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.83...1.0.84) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump hashbrown from 0.14.3 to 0.14.5 (#32383)dependabot[bot]2024-05-271-2/+2
| | | | | | | | | | | | | | | Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.14.3 to 0.14.5. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.5) --- updated-dependencies: - dependency-name: hashbrown dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* build(deps): bump serde from 1.0.202 to 1.0.203 (#32382)dependabot[bot]2024-05-272-5/+5
| | | | | | | | | | | | | | | Bumps [serde](https://github.com/serde-rs/serde) from 1.0.202 to 1.0.203. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.202...v1.0.203) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Upgrade stylo to 2024-05-15 (#32334)Oriol Brufau2024-05-278-75/+47
| | | | | | | | | | | | | * Upgrade stylo to 2024-05-15 * Fixup for https://phabricator.services.mozilla.com/D208599 * Fixup for https://phabricator.services.mozilla.com/D208569 * Fixup for https://phabricator.services.mozilla.com/D207796 * Fixup for https://phabricator.services.mozilla.com/D209690 * hashbrown and indexmap are no longer duplicated