chore: Move sodium init integration into rosenpass-sodium crate

This commit is contained in:
Karolin Varner
2023-11-17 16:47:25 +01:00
committed by Karolin Varner
parent 46156fcb29
commit 99634d9702
9 changed files with 64 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
[package]
name = "rosenpass-sodium"
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Rosenpass internal bindings to libsodium"
homepage = "https://rosenpass.eu/"
repository = "https://github.com/rosenpass/rosenpass"
readme = "readme.md"
[dependencies]
rosenpass-util = { path = "../rosenpass-util" }
anyhow = { version = "1.0.71", features = ["backtrace"] }
libsodium-sys-stable = { version = "1.19.28", features = ["use-pkg-config"] }
log = { version = "0.4.17" }