Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
avl committed Nov 2, 2024
1 parent 858bc48 commit 649a521
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 15 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,15 @@ See the docs for more information, including schema-versioning: https://docs.rs/

# Changelog

## 0.18.3

Bump dependencies:

ring -> 0.17.8

indexmap -> 2.6.0


## 0.18.2

Better diagnostics for async functions with reference parameters.
Expand Down
6 changes: 3 additions & 3 deletions compile_tests/Cargo.lock

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

6 changes: 3 additions & 3 deletions savefile-abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "savefile-abi"
version = "0.18.2"
version = "0.18.3"
edition = "2021"
authors = ["Anders Musikka <[email protected]>"]
documentation = "https://docs.rs/savefile-abi/"
Expand All @@ -17,8 +17,8 @@ keywords = ["dylib", "dlopen", "ffi"]
license = "MIT/Apache-2.0"

[dependencies]
savefile = { path="../savefile", version = "=0.18.2" }
savefile-derive = { path="../savefile-derive", version = "=0.18.2" }
savefile = { path="../savefile", version = "=0.18.3" }
savefile-derive = { path="../savefile-derive", version = "=0.18.3" }
byteorder = "1.4"
libloading = "0.8"

Expand Down
2 changes: 1 addition & 1 deletion savefile-abi/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ The above syntax describes that the returned future is (potentially) capturing `
To be able to use Savefile abi with the 'async_trait'-macro, the above must be supported. However, most usages
of lifetimes in Savefile abi don't make sense, since savefile can always fall back on serialization.

As of version 0.18.2, savefile-abi uses heuristics to detect usage of `#[async_trait]`, and allows lifetime annotations
As of version 0.18.3, savefile-abi uses heuristics to detect usage of `#[async_trait]`, and allows lifetime annotations
_only_ if they appear to follow the pattern used by async_trait. This limitation could be relaxed. The main
challenge is making sure that all the code that savefile-derive generates is compatible with the lifetime annotations,
and also making sure that adding such annotations can't be used to somehow cause unsoundness. Basically, as long
Expand Down
2 changes: 1 addition & 1 deletion savefile-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "savefile-derive"
version = "0.18.2"
version = "0.18.3"
authors = ["Anders Musikka <[email protected]>"]
repository = "https://github.com/avl/savefile"
rust-version = "1.74"
Expand Down
2 changes: 1 addition & 1 deletion savefile-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ nightly=["savefile/nightly"]

[dependencies]
savefile = { path = "../savefile", features = ["size_sanity_checks", "encryption", "compression","bit-set","bit-vec","rustc-hash","serde_derive", "quickcheck", "nalgebra"]}
savefile-derive = { path = "../savefile-derive", version = "=0.18.2" }
savefile-derive = { path = "../savefile-derive", version = "=0.18.3" }
savefile-abi = { path = "../savefile-abi" }
bit-vec = "0.8"
arrayvec="0.7"
Expand Down
6 changes: 3 additions & 3 deletions savefile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "savefile"
version = "0.18.2"
version = "0.18.3"
authors = ["Anders Musikka <[email protected]>"]
documentation = "https://docs.rs/savefile/"
homepage = "https://github.com/avl/savefile/"
Expand Down Expand Up @@ -63,13 +63,13 @@ bit-set08 = {package="bit-set", version = "0.8", optional = true}
rustc-hash = {version = "2.0", optional = true}
memoffset = "0.9"
byteorder = "1.4"
savefile-derive = {path="../savefile-derive", version = "=0.18.2", optional = true }
savefile-derive = {path="../savefile-derive", version = "=0.18.3", optional = true }
serde_derive = {version= "1.0", optional = true}
serde = {version= "1.0", optional = true}
quickcheck = {version= "1.0", optional = true}

[dev-dependencies]
savefile-derive = { path="../savefile-derive", version = "=0.18.2" }
savefile-derive = { path="../savefile-derive", version = "=0.18.3" }

[build-dependencies]
rustc_version="0.4"
Expand Down

0 comments on commit 649a521

Please sign in to comment.