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 1
1
[package ]
2
2
3
3
name = " cssparser"
4
- version = " 0.3.6 "
4
+ version = " 0.3.7 "
5
5
authors = [ " Simon Sapin <simon.sapin@exyr.org>" ]
6
6
7
7
description = " Rust implementation of CSS Syntax Level 3"
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ pub mod Delimiter {
124
124
pub const CurlyBracketBlock : Delimiters = Delimiters { bits : 1 << 1 } ;
125
125
/// The delimiter set with only the `;` semicolon
126
126
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 } ;
127
129
/// The delimiter set with only the `,` comma
128
130
pub const Comma : Delimiters = Delimiters { bits : 1 << 4 } ;
129
131
}
You can’t perform that action at this time.
0 commit comments