diff --git a/mantle/Cargo.lock b/mantle/Cargo.lock index d2a2233..1f403fb 100644 --- a/mantle/Cargo.lock +++ b/mantle/Cargo.lock @@ -1338,7 +1338,7 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" [[package]] name = "mantle" -version = "0.11.10" +version = "0.11.11" dependencies = [ "clap", "dotenv", @@ -2066,7 +2066,7 @@ dependencies = [ [[package]] name = "rbx_api" -version = "0.4.7" +version = "0.4.8" dependencies = [ "base64 0.13.1", "log", @@ -2085,7 +2085,7 @@ dependencies = [ [[package]] name = "rbx_auth" -version = "0.2.1" +version = "0.2.2" dependencies = [ "clap", "env_logger", @@ -2115,7 +2115,7 @@ dependencies = [ [[package]] name = "rbx_cookie" -version = "0.1.3" +version = "0.1.4" dependencies = [ "byteorder 0.5.3", "clap", @@ -2140,7 +2140,7 @@ dependencies = [ [[package]] name = "rbx_mantle" -version = "0.11.10" +version = "0.11.11" dependencies = [ "async-trait", "chrono", diff --git a/mantle/mantle/Cargo.toml b/mantle/mantle/Cargo.toml index 4e36ca1..dff4051 100644 --- a/mantle/mantle/Cargo.toml +++ b/mantle/mantle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mantle" -version = "0.11.10" +version = "0.11.11" edition = "2021" [dependencies] diff --git a/mantle/rbx_api/Cargo.toml b/mantle/rbx_api/Cargo.toml index ceb5892..b4e963e 100644 --- a/mantle/rbx_api/Cargo.toml +++ b/mantle/rbx_api/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_api" description = "Make requests to Roblox's web APIs" -version = "0.4.7" +version = "0.4.8" edition = "2021" homepage = "https://github.com/blake-mealey/mantle/tree/main/rbx_api" repository = "https://github.com/blake-mealey/mantle" @@ -10,7 +10,7 @@ license = "MIT" include = ["src", "Cargo.toml", "README.md"] [dependencies] -rbx_auth = { path = "../rbx_auth", version = "0.2.1", default-features = false } +rbx_auth = { path = "../rbx_auth", version = "0.2.2", default-features = false } thiserror = "1.0.31" log = "0.4.14" diff --git a/mantle/rbx_auth/Cargo.toml b/mantle/rbx_auth/Cargo.toml index 95d93db..880ea1f 100644 --- a/mantle/rbx_auth/Cargo.toml +++ b/mantle/rbx_auth/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_auth" description = "Constructs params for making authenticated requests to Roblox APIs" -version = "0.2.1" +version = "0.2.2" edition = "2021" homepage = "https://github.com/blake-mealey/mantle/tree/main/rbx_auth" repository = "https://github.com/blake-mealey/mantle" @@ -14,7 +14,7 @@ default = ["cli"] cli = ["dep:clap", "dep:env_logger"] [dependencies] -rbx_cookie = { path = "../rbx_cookie", version = "0.1.3", default-features = false } +rbx_cookie = { path = "../rbx_cookie", version = "0.1.4", default-features = false } thiserror = "1.0.31" diff --git a/mantle/rbx_cookie/Cargo.toml b/mantle/rbx_cookie/Cargo.toml index f7958e3..5f0c3cf 100644 --- a/mantle/rbx_cookie/Cargo.toml +++ b/mantle/rbx_cookie/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_cookie" description = "Access the ROBLOSECURITY cookie from your environment" -version = "0.1.3" +version = "0.1.4" edition = "2021" homepage = "https://github.com/blake-mealey/mantle/tree/main/rbx_cookie" repository = "https://github.com/blake-mealey/mantle" diff --git a/mantle/rbx_mantle/Cargo.toml b/mantle/rbx_mantle/Cargo.toml index 1b0e30a..a2cc35f 100644 --- a/mantle/rbx_mantle/Cargo.toml +++ b/mantle/rbx_mantle/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_mantle" description = "Infra-as-code for Roblox" -version = "0.11.10" +version = "0.11.11" homepage = "https://mantledeploy.vercel.app" repository = "https://github.com/blake-mealey/mantle" authors = ["Blake Mealey "]