Skip to content

Commit eda682c

Browse files
committed
bump version and add missing derive for test
1 parent aa5ab5b commit eda682c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "structdiff"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66
repository = "https://github.com/knickish/structdiff"
@@ -11,7 +11,7 @@ categories = ["compression"]
1111
[dependencies]
1212
nanoserde = { version = "^0.1.32", optional = true }
1313
serde = { version = "^1.0.0", optional = true, features = ["derive"] }
14-
structdiff-derive = { path = "derive", version = "=0.5.5" }
14+
structdiff-derive = { path = "derive", version = "=0.5.6" }
1515

1616
[features]
1717
"default" = []

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "structdiff-derive"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["Makepad <info@makepad.nl>", "Fedor <not.fl3@gmail.com>", "Kirk <knickish@gmail.com"]
55
edition = "2018"
66
description = "Fork of nanoserde's parsing library"

tests/enums.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ where
3434

3535
#[allow(unused)]
3636
#[cfg(not(any(feature = "serde", feature = "nanoserde")))]
37-
#[derive(PartialEq, Difference, Clone)]
37+
#[derive(PartialEq, Difference, Clone, Debug)]
3838
pub enum TestDeriveAllEnum<
3939
'a,
4040
'b: 'a,

0 commit comments

Comments
 (0)