-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
114 additions
and
55 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "savefile-abi" | ||
version = "0.17.10" | ||
version = "0.17.11" | ||
edition = "2021" | ||
authors = ["Anders Musikka <[email protected]>"] | ||
documentation = "https://docs.rs/savefile-abi/" | ||
|
@@ -17,8 +17,8 @@ keywords = ["dylib", "dlopen", "ffi"] | |
license = "MIT/Apache-2.0" | ||
|
||
[dependencies] | ||
savefile = { path="../savefile", version = "=0.17.10" } | ||
savefile-derive = { path="../savefile-derive", version = "=0.17.10" } | ||
savefile = { path="../savefile", version = "=0.17.11" } | ||
savefile-derive = { path="../savefile-derive", version = "=0.17.11" } | ||
byteorder = "1.4" | ||
libloading = "0.8" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "savefile-derive" | ||
version = "0.17.10" | ||
version = "0.17.11" | ||
authors = ["Anders Musikka <[email protected]>"] | ||
repository = "https://github.com/avl/savefile" | ||
rust-version = "1.74" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ name = "savefile-test" | |
version = "0.0.1" | ||
authors = ["Anders Musikka <[email protected]>"] | ||
resolver = "2" | ||
edition = "2021" | ||
|
||
[features] | ||
default = ["external_benchmarks"] | ||
# Enable this to reduce risk of crashing on corrupt input. Provides sanity checks for sizes of objects. | ||
|
@@ -12,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.17.10" } | ||
savefile-derive = { path = "../savefile-derive", version = "=0.17.11" } | ||
savefile-abi = { path = "../savefile-abi" } | ||
bit-vec = "0.8" | ||
arrayvec="0.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
use arrayvec::ArrayVec; | ||
use assert_roundtrip; | ||
use crate::assert_roundtrip; | ||
|
||
#[test] | ||
pub fn test_arrayvec0() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use assert_roundtrip; | ||
use crate::assert_roundtrip; | ||
|
||
#[repr(u16)] | ||
#[derive(Savefile, Debug, PartialEq)] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.