[package] name = "argon2-async" version = "0.2.0" edition = "2021" authors = ["0/0 "] readme = "README.md" description = "async wrapper for the argon2 crate" license = "MIT" documentation = "https://docs.rs/argon2-async" homepage = "https://github.com/tazz4843/argon2-async" repository = "https://github.com/tazz4843/argon2-async" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] password-hash = "0.4" rand = "0.8" num_cpus = "1.13" argon2 = { version = "0.4", features = ["parallel", "password-hash"] } tokio = { version = "1.17", default-features = false, features = ["sync", "rt"] } once_cell = { version = "1.8", default-features = false, features = ["std"] }