Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump quick-xml from 0.36.2 to 0.37.1 #1912

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build(deps): bump quick-xml from 0.36.2 to 0.37.1
Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.36.2 to 0.37.1.
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.36.2...v0.37.1)

---
updated-dependencies:
- dependency-name: quick-xml
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Nov 18, 2024
commit 7685fbc9cb181810a22e5d2df9602177802a99f4
13 changes: 11 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gtk4-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ xml_validation = ["quick-xml"]
blueprint = []

[dependencies]
quick-xml = {version = "0.36", optional = true}
quick-xml = {version = "0.37", optional = true}
proc-macro-crate = "3.0"
proc-macro2 = "1.0"
quote = "1.0"

Unchanged files with check annotations Beta

// Take a look at the license at the top of the repository in the LICENSE file.
use std::{ffi::c_void, ptr::NonNull};

Check warning on line 3 in gdk4-win32/src/win32_hcursor.rs

GitHub Actions / Windows MSVC

unused import: `ffi::c_void`

Check warning on line 3 in gdk4-win32/src/win32_hcursor.rs

GitHub Actions / Windows MSVC

unused import: `ffi::c_void`

Check warning on line 3 in gdk4-win32/src/win32_hcursor.rs

GitHub Actions / Windows MSVC

unused import: `ffi::c_void`
use glib::{translate::*, types::Pointee};
#[doc(alias = "GDK_MODIFIER_MASK")]
pub const MODIFIER_MASK: ModifierType = ModifierType::all();

Check warning on line 23 in gdk4/src/lib.rs

GitHub Actions / build

redundant explicit link target
#[doc(alias = "GDK_ACTION_ALL")]
pub const ACTION_ALL: u32 = ffi::GDK_ACTION_ALL as u32;
#[doc(alias = "gsk_transform_transform_point")]
pub fn transform_point(&self, point: &graphene::Point) -> graphene::Point {
unsafe {
let mut out_point = graphene::Point::uninitialized();

Check warning on line 190 in gsk4/src/auto/transform.rs

GitHub Actions / build

could not parse code block as Rust code
ffi::gsk_transform_transform_point(
self.to_glib_none().0,
point.to_glib_none().0,