move external dependencies to workspace level

This commit is contained in:
Jemilu Mohammed
2023-11-30 14:18:19 +00:00
committed by Karolin Varner
parent cc8c13e121
commit 181154b470
7 changed files with 50 additions and 28 deletions

View File

@@ -12,6 +12,6 @@ readme = "readme.md"
[dependencies]
rosenpass-util = { path = "../util" }
rosenpass-to = { path = "../to" }
anyhow = { version = "1.0.71", features = ["backtrace"] }
libsodium-sys-stable = { version = "1.19.28", features = ["use-pkg-config"] }
log = { version = "0.4.17" }
anyhow = { workspace = true, features = ["backtrace"] }
libsodium-sys-stable = { workspace = true, features = ["use-pkg-config"] }
log = { workspace = true }