Skip to content

Commit

Permalink
Upgrade to syn 2 (#103)
Browse files Browse the repository at this point in the history
* Bump syn from 1.0.109 to 2.0.85

* BufMut-support

* Fix compile_test test-case
  • Loading branch information
avl authored Dec 1, 2024
1 parent c87d40f commit 6de1033
Show file tree
Hide file tree
Showing 20 changed files with 1,151 additions and 413 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

This file contains information about changes in each version of savefile.

## 0.18.5

Switch parsing library from syn 1 o syn 2. This should have no effect for users.

Add support for the `BufMut` trait from the 'bytes'-crate to savefile-abi.

This allows the following function signature:

```rust
async fn read(&self, buf: &mut dyn bytes::BufMut) {}
```



Require rust version 1.74 or later, also for 'savefile'. This constraint was previously
only added on savefile-derive and savefile-abi. Savefile was not tested with earlier versions,
so this was an oversight.

## 0.18.4

Create a separate CHANGELOG.md-file.
Expand Down
94 changes: 45 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6de1033

Please sign in to comment.