diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-09-01 11:58:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 09:58:48 +0000 |
commit | e9281e2eda53f45cf1c902a843158c1dc2494a89 (patch) | |
tree | 6c9d5be99b77a99a448444943c3d018f78f14dfa /components/script/dom/bindings/codegen/CodegenRust.py | |
parent | 6eb3e165787449492ee12f3bd1a6f8529356f7e6 (diff) | |
download | servo-e9281e2eda53f45cf1c902a843158c1dc2494a89.tar.gz servo-e9281e2eda53f45cf1c902a843158c1dc2494a89.zip |
build(deps): bump bitflags from 1.3.2 to 2.3.1 (#30273)
Bumps [bitflags](https://github.com/bitflags/bitflags) from 1.3.2 to 2.3.1.
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitflags/bitflags/compare/1.3.2...2.3.1)
Diffstat (limited to 'components/script/dom/bindings/codegen/CodegenRust.py')
-rw-r--r-- | components/script/dom/bindings/codegen/CodegenRust.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/codegen/CodegenRust.py b/components/script/dom/bindings/codegen/CodegenRust.py index 0c39ecf2f3e..bc7f2ceb9a8 100644 --- a/components/script/dom/bindings/codegen/CodegenRust.py +++ b/components/script/dom/bindings/codegen/CodegenRust.py @@ -7964,7 +7964,7 @@ class GlobalGenRoots(): global_flags = CGWrapper(CGIndenter(CGList([ CGGeneric("const %s = %#x;" % args) for args in flags - ], "\n")), pre="pub struct Globals: u8 {\n", post="\n}") + ], "\n")), pre="#[derive(Clone, Copy)]\npub struct Globals: u8 {\n", post="\n}") globals_ = CGWrapper(CGIndenter(global_flags), pre="bitflags! {\n", post="\n}") phf = CGGeneric("include!(concat!(env!(\"OUT_DIR\"), \"/InterfaceObjectMapPhf.rs\"));") |