Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 08c4335

Browse files
committed
version bumps
1 parent 1937abd commit 08c4335

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

packed_struct/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ 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"
7+
rust = "1.51"
78
authors = ["Rudi Benkovic <[email protected]>"]
8-
build = "build.rs"
99
license = "MIT OR Apache-2.0"
1010
keywords = ["enum", "packing", "serialization"]
1111
categories = ["encoding"]
1212
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
bitvec = { version = "0.22.3", default-features = false }

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)