diff --git a/.github/workflows/static.yaml b/.github/workflows/static.yaml index 53594100..3d0e6f29 100644 --- a/.github/workflows/static.yaml +++ b/.github/workflows/static.yaml @@ -44,7 +44,7 @@ jobs: uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v3 with: path: './www' diff --git a/.gitignore b/.gitignore index b60de5b5..ec65e59f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ **/target +www/bip322* diff --git a/Cargo.toml b/Cargo.toml index a0b90cf4..9250197b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,8 @@ version = "0.0.3" edition = "2021" description = "Implements BIP322 generic message signing" license = "CC0-1.0" +homepage = "https://bip322.rs" +repository = "https://github.com/raphjaph/bip322" [dependencies] base64 = "0.22.1" diff --git a/www/Cargo.lock b/www/Cargo.lock index 1f1cad36..a4804824 100644 --- a/www/Cargo.lock +++ b/www/Cargo.lock @@ -22,7 +22,9 @@ checksum = "98f7eed2b2781a6f0b5c903471d48e15f56fb4e1165df8a9a2337fd1a59d45ea" [[package]] name = "bip322" -version = "0.0.2" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6048ae0b251cd57e77fc4ec31b0fe916b5fbdb6d0b9d20c8fd1ccb6fcc7e15f7" dependencies = [ "base64", "bitcoin", diff --git a/www/Cargo.toml b/www/Cargo.toml index 61ef4a08..58d906f8 100644 --- a/www/Cargo.toml +++ b/www/Cargo.toml @@ -7,9 +7,6 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -bip322 = "0.0.2" +bip322 = "0.0.3" bitcoin = "0.31.2" wasm-bindgen = "0.2.92" - -[patch.crates-io] -bip322 = { path = "../" }