node: add radicle-protocol to dev-dependencies

If one attempted to compile the test target for `radicle-node` by itself, it
would result in a compiler error – due to missing trait implementations that are
provided by `radicle-protocol/test`.

It would compile fine when `--all` is used due to cargo unifying feature sets,
so it went unnoticed until now.

This fixes the issue by adding `radicle-protocol` to the `dev-dependencies` and
enabling the `test` feature flag.
This commit is contained in:
Fintan Halpenny 2025-08-07 09:36:18 +01:00
parent d7b48b9e29
commit a8dac56ca6
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ thiserror = { workspace = true }
qcheck = { workspace = true } qcheck = { workspace = true }
qcheck-macros = { workspace = true } qcheck-macros = { workspace = true }
radicle = { workspace = true, features = ["test"] } radicle = { workspace = true, features = ["test"] }
radicle-protocol = { workspace = true, features = ["test"] }
radicle-crypto = { workspace = true, features = ["test", "cyphernet"] } radicle-crypto = { workspace = true, features = ["test", "cyphernet"] }
snapbox = { workspace = true } snapbox = { workspace = true }
test-log = "0.2.18" test-log = "0.2.18"