radicle: Add `tempfile` to dev-dependencies

In commit 2149770a4b the dependency
`tempfile` was made optional, and added to be enabled by the feature
flag `test`. However, the *tests of this crate itself* need the
dependency *unconditionally* as they want to create temporary
directories.

This was not noticed earlier, since the error does not surface when
the whole workspace is tested (`cargo test --workspace`), but only
when the crate itself is tested (`cargo test --package=radicle`),
because when testing the workspace, dependents of `radicle` will
enable the `test` feature flag.
This commit is contained in:
Lorenz Leutgeb 2025-10-11 15:10:17 +02:00 committed by Fintan Halpenny
parent 3e98589a76
commit 292befdb36
1 changed files with 1 additions and 0 deletions

View File

@ -60,3 +60,4 @@ qcheck = { workspace = true }
qcheck-macros = { workspace = true } qcheck-macros = { workspace = true }
radicle-cob = { workspace = true, features = ["stable-commit-ids"] } radicle-cob = { workspace = true, features = ["stable-commit-ids"] }
radicle-crypto = { workspace = true, features = ["test"] } radicle-crypto = { workspace = true, features = ["test"] }
tempfile = { workspace = true }