diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-28 18:27:03 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-28 18:27:03 +0200 |
commit | 51761cbdefa39107b9e1f931f1aa8df6aebb2a94 (patch) | |
tree | 957ca180786ece777e6e1153ada91da741d845ec /logic/Cargo.toml | |
parent | 80d28b764c95891551e28c395783f5ff9d065743 (diff) | |
download | jellything-51761cbdefa39107b9e1f931f1aa8df6aebb2a94.tar jellything-51761cbdefa39107b9e1f931f1aa8df6aebb2a94.tar.bz2 jellything-51761cbdefa39107b9e1f931f1aa8df6aebb2a94.tar.zst |
many much more generic refactor
Diffstat (limited to 'logic/Cargo.toml')
-rw-r--r-- | logic/Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/logic/Cargo.toml b/logic/Cargo.toml index 4107c14..bd8a28d 100644 --- a/logic/Cargo.toml +++ b/logic/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "logic" +name = "jellylogic" version = "0.1.0" edition = "2024" @@ -8,3 +8,9 @@ jellybase = { path = "../base" } jellycommon = { path = "../common" } log = "0.4.27" anyhow = "1.0.98" +base64 = "0.22.1" +argon2 = "0.5.3" +aes-gcm-siv = "0.11.1" +serde = { version = "1.0.217", features = ["derive", "rc"] } +bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] } +rand = "0.9.0" |