File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2727 steps :
2828 - uses : actions/checkout@v4
2929 - name : Check semver
30+ # Allow failure until we update all the package versions.
31+ continue-on-error : true
3032 uses : obi1kenobi/cargo-semver-checks-action@v2
3133 build :
3234 runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ clippy.result_unit_err = "allow"
2525clippy.too_many_arguments = " allow"
2626clippy.type_complexity = " allow"
2727
28+ # Work around an issue in the objc crate.
29+ # https://github.com/SSheldon/rust-objc/issues/125
30+ [workspace .lints .rust ]
31+ unexpected_cfgs = { level = " warn" , check-cfg = [' cfg(feature, values("cargo-clippy"))' ] }
32+
2833[workspace .dependencies ]
2934cocoa-foundation = { default-features = false , path = " cocoa-foundation" , version = " 0.2" }
3035core-foundation = { default-features = false , path = " core-foundation" , version = " 0.10" }
Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ pub type CGEventMask = u64;
498498/* Generate an event mask for a single type of event. */
499499macro_rules! CGEventMaskBit {
500500 ( $eventType: expr) => {
501- 1 << $eventType as CGEventMask
501+ ( 1 << $eventType as CGEventMask )
502502 } ;
503503}
504504
You can’t perform that action at this time.
0 commit comments