File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed
Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to crates.io
2+ on :
3+ push :
4+ tags : ['v*'] # Triggers when pushing tags starting with 'v'
5+ jobs :
6+ publish :
7+ runs-on : ubuntu-latest
8+ environment : release # Optional: for enhanced security
9+ permissions :
10+ id-token : write # Required for OIDC token exchange
11+ steps :
12+ - uses : actions/checkout@v5
13+ - uses : rust-lang/crates-io-auth-action@v1
14+ id : auth
15+ - run : cargo publish
16+ env :
17+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
Original file line number Diff line number Diff line change 11[package ]
22name = " cbor4ii"
3- version = " 1.2.0 "
3+ version = " 1.2.1 "
44authors = [" quininer <quininer@live.com>" ]
55description = " CBOR: Concise Binary Object Representation"
66repository = " https://github.com/quininer/cbor4ii"
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ impl<E: core::error::Error + 'static> core::error::Error for EncodeError<E> {
190190 }
191191}
192192
193+ #[ cfg( target_pointer_width = "64" ) ]
193194#[ test]
194195fn test_error_type_size ( ) {
195196 // bottom type
You can’t perform that action at this time.
0 commit comments