diff --git a/.github/workflows/cloudflare-pages.yml b/.github/workflows/cloudflare-pages.yml index 68ad3fd..0b83abe 100644 --- a/.github/workflows/cloudflare-pages.yml +++ b/.github/workflows/cloudflare-pages.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '21' + node-version: '25' - name: Install dependencies run: | diff --git a/scpt/run.zsh b/scpt/run.zsh index 99c76aa..5d7fa2e 100755 --- a/scpt/run.zsh +++ b/scpt/run.zsh @@ -75,7 +75,7 @@ function _server_public() { function _oauth_build() { cd $oauth - nvm use 21 + nvm use 25 npm i npm run build rm -rf $myblog/static/assets @@ -86,7 +86,7 @@ function _oauth_build() { function _pds_build() { cd $pds - nvm use 21 + nvm use 25 npm i npm run build rm -rf $myblog/static/pds @@ -95,7 +95,7 @@ function _pds_build() { function _pds_server() { cd $pds - nvm use 21 + nvm use 25 npm run preview } diff --git a/src/atproto/oauth.rs b/src/atproto/oauth.rs index a3178c9..438dca7 100644 --- a/src/atproto/oauth.rs +++ b/src/atproto/oauth.rs @@ -28,6 +28,7 @@ pub struct OAuthHandler { } #[derive(Debug, Serialize, Deserialize)] +#[allow(dead_code)] pub struct AuthorizationRequest { pub response_type: String, pub client_id: String,