Skip to content

Commit d1fe344

Browse files
committed
version bump
1 parent 4b249fe commit d1fe344

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

packed_struct/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "packed_struct"
33
description = "Binary-level structure packing and unpacking generator"
44
repository = "https://github.com/hashmismatch/packed_struct.rs"
55
homepage = "http://www.hashmismatch.net/libraries/packed-struct/"
6-
version = "0.5.0"
6+
version = "0.6.0"
77
authors = ["Rudi Benkovic <[email protected]>"]
88
build = "build.rs"
99
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ readme = "../README.md"
1313
edition = "2018"
1414

1515
[dependencies]
16-
packed_struct_codegen = { path = "../packed_struct_codegen/", version = "0.5.0" }
16+
packed_struct_codegen = { path = "../packed_struct_codegen/", version = "0.6.0" }
1717
serde = { version = "1.0", optional = true, default-features = false }
1818
serde_derive = { version = "1.0", optional = true }
1919

packed_struct_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "packed_struct_codegen"
33
description = "This crate implements the code generation for the packed_struct library."
44
repository = "https://github.com/hashmismatch/packed_struct.rs"
5-
version = "0.5.0"
5+
version = "0.6.0"
66
license = "MIT OR Apache-2.0"
77
authors = ["Rudi Benkovic <[email protected]>"]
88
edition = "2018"

packed_struct_examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ publish = false
66
edition = "2018"
77

88
[dependencies]
9-
packed_struct = { path = "../packed_struct/", version = "0.5", features = ["byte_types_64"] }
9+
packed_struct = { path = "../packed_struct/", version = "0.6", features = ["byte_types_64"] }

packed_struct_nostd_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
authors = ["Rudi Benkovic <[email protected]>"]
55

66
[dependencies]
7-
packed_struct = { path = "../packed_struct/", version = "0.5", default-features = false }
7+
packed_struct = { path = "../packed_struct/", version = "0.6", default-features = false }

packed_struct_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ publish = false
66
edition = "2018"
77

88
[dependencies]
9-
packed_struct = { path = "../packed_struct/", version = "0.5", features = ["byte_types_64", "use_serde"] }
9+
packed_struct = { path = "../packed_struct/", version = "0.6", features = ["byte_types_64", "use_serde"] }
1010
error-chain = "0.12.0"
1111
serde = "1.0"

0 commit comments

Comments
 (0)