diff --git a/Cargo.toml b/Cargo.toml index a2cfbf5..ce7c54d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,10 @@ name = "django-auth" version = "0.1.0" edition = "2021" +license-file = "LICENSE" +description = "Authenticate or generate Django-managed passwords" +homepage = "https://github.com/mindeng/django-auth" +repository = "https://github.com/mindeng/django-auth" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,3 +14,5 @@ pbkdf2 = "0.12" sha2 = "0.10" base64 = "0.21" thiserror = "1.0" + +[package.metadata.playground] diff --git a/README.md b/README.md index 37df679..9606269 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,9 @@ ![django-auth workflow](https://github.com/mindeng/django-auth/actions/workflows/rust.yml/badge.svg) -Authenticate and generate Django-managed passwords. Written in Rust. +Authenticate or generate Django-managed passwords. Written in Rust. + +A Django-managed password is a hashed password stored by Django. +See [Password management in Django][1] for more information. + +[1]: https://docs.djangoproject.com/en/5.0/topics/auth/passwords/