Skip to content

Commit

Permalink
chore: remove version from local dev-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Dec 16, 2024
1 parent dcd0b40 commit 2275bee
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions iroh-dns-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ z32 = "1.1.1"
[dev-dependencies]
criterion = "0.5.1"
hickory-resolver = "=0.25.0-alpha.4"
iroh = { version = "0.29.0", path = "../iroh" }
iroh-test = { version = "0.29.0", path = "../iroh-test" }
iroh = { path = "../iroh" }
iroh-test = { path = "../iroh-test" }
pkarr = { version = "2.2.0", features = ["rand"] }
rand = "0.8"
rand_chacha = "0.3.1"
Expand Down
4 changes: 2 additions & 2 deletions iroh-net-report/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ tracing = "0.1"
url = { version = "2.4" }

[dev-dependencies]
iroh-relay = { version = "0.29", path = "../iroh-relay", features = ["test-utils", "server"] }
iroh-test = { version = "0.29.0", path = "../iroh-test" }
iroh-relay = { path = "../iroh-relay", features = ["test-utils", "server"] }
iroh-test = { path = "../iroh-test" }
once_cell = "1.18.0"
pretty_assertions = "1.4"
testresult = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-relay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ tokio = { version = "1", features = [
"test-util",
] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
iroh-test = { version = "0.29.0", path = "../iroh-test" }
iroh-test = { path = "../iroh-test" }
serde_json = "1"

[features]
Expand Down
4 changes: 2 additions & 2 deletions iroh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ tokio = { version = "1", features = [
"test-util",
] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
iroh-test = { version = "0.29.0", path = "../iroh-test" }
iroh-test = { path = "../iroh-test" }
serde_json = "1"
testresult = "0.4.0"
iroh-relay = { version = "0.29", path = "../iroh-relay", default-features = false, features = ["test-utils", "server"] }
iroh-relay = { path = "../iroh-relay", default-features = false, features = ["test-utils", "server"] }

[features]
default = ["metrics", "discovery-pkarr-dht"]
Expand Down

0 comments on commit 2275bee

Please sign in to comment.