[package] name = "safe-box" version = "0.1.3" edition = "2021" authors = ["misaka10987 "] description = "Utilities for managing a password database." documentation = "https://github.com/misaka10987/safe-box" homepage = "https://github.com/misaka10987/safe-box" repository = "https://github.com/misaka10987/safe-box" readme = "README.md" keywords = ["safe-box", "password", "safety"] license = "MIT" [dependencies] crypto = { version = "0.5.1", features = ["password-hash"] } argon2 = { version = "0.5.3" } rand_core = { version = "0.6.4", features = ["getrandom"] } sqlx = { version = "0.8.1", features = ["sqlite"] } thiserror = "1.0.63" getrandom = "0.2.15" base64 = "0.22.1" async-mutex = "1.4.0"