Skip to content

Commit

Permalink
fix: downgrade regex version to 1.10.5 and update lifetime annotation…
Browse files Browse the repository at this point in the history
… in SerializerSeq implementation
  • Loading branch information
Ayodeji Ige committed Nov 27, 2024
1 parent e5855e9 commit 6ec6d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ thiserror = "1.0.62"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
windows = "0.58.0"
regex = "1.11.1"
regex = "1.10.5"

# The following workspace.metadata.wdk sections can be uncommented to configure the workspace for a specific WDK configuration (ex. for rust-analyzer to resolve things for a specific configuration)

Expand Down
2 changes: 1 addition & 1 deletion crates/wdk-build/src/metadata/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ pub struct SerializerSeq<'a> {
delimited_string: String,
}

impl<'a> ser::SerializeSeq for SerializerSeq<'a> {
impl ser::SerializeSeq for SerializerSeq<'_> {
type Error = Error;
type Ok = Option<String>;

Expand Down

0 comments on commit 6ec6d40

Please sign in to comment.