From e7b6471f12d1d8bf5e643e1fa87d9c4c35ab743f Mon Sep 17 00:00:00 2001 From: GroM Date: Wed, 6 Dec 2023 16:59:21 +0100 Subject: [PATCH] update manifest files --- .github/workflows/publish.yml | 18 ++---------------- include_gif/Cargo.toml | 1 + ledger_device_sdk/Cargo.toml | 1 + ledger_secure_sdk_sys/Cargo.toml | 1 + testmacro/Cargo.toml | 3 +++ 5 files changed, 8 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 693b62a2..054d0998 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,23 +13,8 @@ on: name: description: 'Manually triggered' jobs: - publish-dry-run: - if: ${{ github.event_name != 'workflow_dispatch' }} - name: Dry-run publish packages - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - uses: katyo/publish-crates@v2 - with: - args: --no-verify --dry-run - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} publish: - if: ${{ github.event_name != 'workflow_dispatch' }} - name: Publish ledger_device_sdk + name: Publish packages runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -40,5 +25,6 @@ jobs: - uses: katyo/publish-crates@v2 with: args: --no-verify + dry-run: ${{ github.event_name != 'workflow_dispatch' }} registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} \ No newline at end of file diff --git a/include_gif/Cargo.toml b/include_gif/Cargo.toml index c6eedd55..ef850dba 100644 --- a/include_gif/Cargo.toml +++ b/include_gif/Cargo.toml @@ -3,6 +3,7 @@ name = "include_gif" version = "1.0.1" edition = "2021" license.workspace = true +repository.workspace = true description = "procedural macro that packs a gif image into a byte representation" [lib] diff --git a/ledger_device_sdk/Cargo.toml b/ledger_device_sdk/Cargo.toml index f1a9e5f7..514e3505 100644 --- a/ledger_device_sdk/Cargo.toml +++ b/ledger_device_sdk/Cargo.toml @@ -4,6 +4,7 @@ version = "1.2.1" authors = ["yhql", "yogh333"] edition = "2021" license.workspace = true +repository.workspace = true description = "Ledger device Rust SDK" [dev-dependencies] diff --git a/ledger_secure_sdk_sys/Cargo.toml b/ledger_secure_sdk_sys/Cargo.toml index 5d0f1a0b..8c9e63a5 100644 --- a/ledger_secure_sdk_sys/Cargo.toml +++ b/ledger_secure_sdk_sys/Cargo.toml @@ -4,6 +4,7 @@ version = "1.0.2" authors = ["yhql"] edition = "2021" license.workspace = true +repository.workspace = true description = "Bindings to Ledger C SDK" [build-dependencies] diff --git a/testmacro/Cargo.toml b/testmacro/Cargo.toml index b5e05828..dc211a41 100644 --- a/testmacro/Cargo.toml +++ b/testmacro/Cargo.toml @@ -3,6 +3,9 @@ name = "testmacro" version = "0.1.0" authors = ["yhql "] edition = "2018" +license.workspace = true +repository.workspace = true +description = "procedural macro used to run unit and integration tests" [lib] proc-macro = true