From b6350162b4c70abb896613e4ebea65ca1661450d Mon Sep 17 00:00:00 2001 From: Max Audron Date: Tue, 6 May 2025 16:17:35 +0200 Subject: update dependencies --- src/hooks/sed/parser.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/hooks/sed') diff --git a/src/hooks/sed/parser.rs b/src/hooks/sed/parser.rs index 815803c..61e719d 100644 --- a/src/hooks/sed/parser.rs +++ b/src/hooks/sed/parser.rs @@ -121,6 +121,7 @@ bitflags! { /// s allow . to match \n /// U swap the meaning of x* and x*? /// x ignore whitespace and allow line comments (starting with `#`) + #[derive(Debug, Clone, PartialEq, PartialOrd)] struct Flags: u32 { const GLOBAL = 0b00000001; const CASE_INSENSITIVE = 0b00000010; -- cgit v1.2.3