Skip to content
Merged
Show file tree
Hide file tree
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
27 changes: 19 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ expectorate = "1.1.0"
newtype-uuid = "1.2.1"
oxnet = "0.1.0"
paste = "1.0.15"
prettyplease = "0.2.29"
prettyplease = "0.3.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
syn = "3.0"
trybuild = "1.0.103"
uuid = "1.12.0"
indexmap = "2.11.4"
2 changes: 1 addition & 1 deletion daft-derive/src/internals/imp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ fn add_lifetime_to_generics(
// Add the 'daft lifetime to the beginning of the parameter list -- the
// exact order is not hugely important, but doing this makes tests simpler
// (they can just check the first element).
new_generics.params.insert(0, GenericParam::from(daft_lt.clone()));
new_generics.params.insert(0, GenericParam::Lifetime(daft_lt.clone()));
new_generics
}

Expand Down
Loading