File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 11[package ]
22
33name = " cssparser"
4- version = " 0.3.6 "
4+ version = " 0.3.7 "
55authors = [
" Simon Sapin <[email protected] >" ]
66
77description = " Rust implementation of CSS Syntax Level 3"
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ pub mod Delimiter {
124124 pub const CurlyBracketBlock : Delimiters = Delimiters { bits : 1 << 1 } ;
125125 /// The delimiter set with only the `;` semicolon
126126 pub const Semicolon : Delimiters = Delimiters { bits : 1 << 2 } ;
127+ /// The delimiter set with only the `!` exclamation point
128+ pub const Bang : Delimiters = Delimiters { bits : 1 << 3 } ;
127129 /// The delimiter set with only the `,` comma
128130 pub const Comma : Delimiters = Delimiters { bits : 1 << 4 } ;
129131}
You can’t perform that action at this time.
0 commit comments