From 3c572a91a9ec0d046bcebbc82e56a6ff24f8a21b Mon Sep 17 00:00:00 2001 From: hydai Date: Tue, 19 Aug 2025 16:33:00 +0800 Subject: [PATCH 1/2] chore: set rust 1.89 toolchain Signed-off-by: hydai --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index d7153b1..bbe8616 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.87" +channel = "1.89" components = ["rustc", "rust-std", "cargo", "clippy", "rustfmt", "rust-docs"] From 63edccf9202d882156a93beac2a09242a52dd6a7 Mon Sep 17 00:00:00 2001 From: hydai Date: Tue, 19 Aug 2025 16:37:40 +0800 Subject: [PATCH 2/2] chore: udpate README for the latest setup commands Signed-off-by: hydai --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 51948cc..b949044 100644 --- a/README.md +++ b/README.md @@ -83,12 +83,16 @@ The server validates that all hex strings: ```console cargo build --release ``` -4. Run the server: +4. Run the API key server: ```console -./target/release/apikey_server +./target/release/api-key-generator +# The API key server will start on `127.0.0.1:8081` by default. +``` +5. Start HTTP server for the users: +```console +python -m http.server 8080 ``` -The server will start on `127.0.0.1:8081` by default. ## CORS Support