Skip to content

Commit 2f57588

Browse files
committed
misc: exactly specifying workspace dependency versions
1 parent 57b487f commit 2f57588

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ resolver = "2"
33
members = ["bmatcher", "bmatcher-core", "bmatcher-proc", "example"]
44

55
[workspace.package]
6-
version = "0.2.3"
76
authors = ["Markus Hadenfeldt <[email protected]>"]
87
edition = "2021"
98
description = "bmatcher is a flexible and efficient binary pattern matching library designed to help you search and match binary data."

bmatcher-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bmatcher-core"
3+
version = "0.2.4"
34
authors.workspace = true
4-
version.workspace = true
55
edition.workspace = true
66
description.workspace = true
77
license-file.workspace = true

bmatcher-proc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bmatcher-proc"
3+
version = "0.2.4"
34
authors.workspace = true
4-
version.workspace = true
55
description.workspace = true
66
license-file.workspace = true
77
edition.workspace = true
@@ -10,7 +10,7 @@ edition.workspace = true
1010
proc-macro = true
1111

1212
[dependencies]
13-
bmatcher-core = { version = "0.2", path = "../bmatcher-core" }
13+
bmatcher-core = { version = "=0.2.4", path = "../bmatcher-core" }
1414
quote = "1"
1515
proc-macro2 = "1.0"
1616
syn = { version = "2.0", features = ["full"] }

bmatcher/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "bmatcher"
3+
version = "0.2.4"
34
authors.workspace = true
4-
version.workspace = true
55
edition.workspace = true
66
description.workspace = true
77
license-file.workspace = true
88
repository.workspace = true
99
readme = "../README.MD"
1010

1111
[dependencies]
12-
bmatcher-core = { version = "0.2", path = "../bmatcher-core" }
13-
bmatcher-proc = { version = "0.2", path = "../bmatcher-proc" }
12+
bmatcher-core = { version = "=0.2.4", path = "../bmatcher-core" }
13+
bmatcher-proc = { version = "=0.2.4", path = "../bmatcher-proc" }

example/Cargo.toml

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

88
[dependencies]
9-
bmatcher = { version = "*", path = "../bmatcher" }
9+
bmatcher = { version = "=0.2.4", path = "../bmatcher" }

0 commit comments

Comments
 (0)