File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 47
47
run : cargo clippy --all-targets --manifest-path=c-api/Cargo.toml --target-dir=target
48
48
- name : Run clippy on JS API
49
49
run : cargo clippy --all-targets --manifest-path=js-api/Cargo.toml --target-dir=target
50
-
50
+ - name : Check semver
51
+ uses : obi1kenobi/cargo-semver-checks-action@v2
52
+ with :
53
+ package : lol_html
54
+ feature-group : default-features
55
+ verbose : true
51
56
test :
52
57
name : Test
53
58
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ pub enum SelectorError {
45
45
#[ error( "Invalid or unescaped class name in selector." ) ]
46
46
InvalidClassName ,
47
47
48
+ /// Unused
49
+ #[ error( "Empty negation in selector." ) ]
50
+ #[ deprecated( note = "unused" ) ]
51
+ EmptyNegation ,
52
+
48
53
/// Unsupported combinator in the selector.
49
54
#[ error( "Unsupported combinator `{0}` in selector." ) ]
50
55
UnsupportedCombinator ( char ) ,
You can’t perform that action at this time.
0 commit comments