diff --git a/CHANGELOG.md b/CHANGELOG.md index f5ddbf6..5b10385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,72 +1,15 @@ # Changelog + -- `KeystoreState` now starts as `KeystoreState::NonConformant` by default +## Unreleased -## v1.0.0 +## 0.1.0 -Initial release +- Initial release. Crate was renamed to `bevy_key_rotation` from `bevy-key-rotation` and republished. diff --git a/Cargo.toml b/Cargo.toml index 09be518..a3539fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,24 +1,24 @@ [package] -name = "bevy-key-rotation" +name = "bevy_key_rotation" description = "Access and refresh token rotation for Bevy applications" license = "MIT/Apache-2.0" -repository = "https://github.com/vectorgameexperts/bevy-key-rotation" +repository = "https://github.com/loopystudios/bevy_key_rotation" authors = ["Spencer C. Imbleau"] keywords = ["gamedev"] -version = "1.5.0" +version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -web-time = "1.0" -thiserror = "1.0" -bevy-async-task = "1.4" -async-trait = "0.1" +web-time = "1.1.0" +thiserror = "1.0.58" +bevy_async_task = "0.1.0" +async-trait = "0.1.79" bevy = { version = "0.13", default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -getrandom = { version = "0.2" } +getrandom = { version = "0.2.12" } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = "0.3" -getrandom = { version = "0.2", features = ["js"] } +wasm-bindgen-test = "0.3.42" +getrandom = { version = "0.2.12", features = ["js"] } diff --git a/README.md b/README.md index 524b5a8..eb621f9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Bevy Key Rotation ![MIT/Apache 2.0](https://img.shields.io/badge/license-MIT%2FApache-blue.svg) -[![crates.io](https://img.shields.io/crates/v/bevy-key-rotation.svg)](https://crates.io/crates/bevy-key-rotation) -[![docs.rs](https://img.shields.io/docsrs/bevy-key-rotation)](https://docs.rs/bevy-key-rotation) +[![crates.io](https://img.shields.io/crates/v/bevy_key_rotation.svg)](https://crates.io/crates/bevy_key_rotation) +[![docs.rs](https://img.shields.io/docsrs/bevy_key_rotation)](https://docs.rs/bevy_key_rotation) A minimum crate for non-blocking, continuous use of an access token, by ensuring it is constantly rotated ahead-of-time via refresh token. When a refresh token needs to be rotated, it is rotated with username/password credentials. @@ -10,12 +10,10 @@ There is full API support for **wasm** and **native**. Android and iOS are untes ## Bevy version support -|bevy|bevy-key-rotation| +|bevy|bevy_key_rotation| |---|---| -|0.13|1.5, main| -|0.12|1.4| -|0.11|1.3| -|<= 0.10|Unsupported| +|0.13|0.1, main| +|< 0.13|Unsupported| ## Usage