Update derive_more

This commit is contained in:
Olivier Goffart 2024-09-25 16:28:09 +02:00
parent a9aa8bca42
commit 8ac0c792e8
3 changed files with 4 additions and 6 deletions

View file

@ -236,9 +236,8 @@ macro_rules! declare_syntax {
pub mod syntax_nodes {
use super::*;
use derive_more::*;
$(
#[derive(Debug, Clone, Deref, Into)]
#[derive(Debug, Clone, derive_more::Deref, derive_more::Into)]
pub struct $nodekind(SyntaxNode);
#[cfg(test)]
impl SyntaxNodeVerify for $nodekind {