Skip to content

Commit

Permalink
chore(deps): remove version from local dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and joshuef committed Mar 14, 2024
1 parent 4cc82d0 commit 28fdac6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ assert_matches = "1.5.0"
reqwest = { version="0.11.18", default-features=false, features = ["rustls"] }
serde_json = "1.0"
tempfile = "3.6.0"
test_utils = { path = "../test_utils", version = "0.1.0" }
# Do not specify the version field. Release process expects even the local dev deps to be published.
# Removing the version field is a workaround.
test_utils = { path = "../test_utils" }

[lints]
workspace = true
4 changes: 3 additions & 1 deletion sn_node_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ assert_cmd = "2.0.12"
assert_fs = "1.0.13"
assert_matches = "1.5.0"
async-trait = "0.1"
test_utils = { path = "../test_utils", version = "0.1.0" }
# Do not specify the version field. Release process expects even the local dev deps to be published.
# Removing the version field is a workaround.
test_utils = { path = "../test_utils" }
mockall = "0.11.3"
reqwest = { version = "0.11", default-features = false, features = [
"json",
Expand Down

0 comments on commit 28fdac6

Please sign in to comment.