initial commit

This commit is contained in:
Maple Nebel 2026-07-03 22:15:58 +02:00
commit 366cc3b759
6 changed files with 422 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "spbr-common"
version = "0.1.0"
edition = "2024"
[dependencies]
aes = "0.9.1"
base64 = { version = "0.22.1",
optional = true
}
bytemuck = { version = "1.25.0", features = ["derive"] }
hmac = {version = "0.13.0", optional = true}
hybrid-array = { version = "0.4.13", features = ["bytemuck"], optional = true }
md-5 = {version = "0.11.0", optional = true}
thiserror = "2.0.18"
rand = "0.10.2"
[features]
crypto = ["dep:base64", "dep:hmac", "dep:md-5", "dep:hybrid-array"]