Skip to content

Commit

Permalink
update manifest files
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Dec 6, 2023
1 parent e016937 commit e7b6471
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

1 change: 1 addition & 0 deletions include_gif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 1 addition & 0 deletions ledger_device_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 1 addition & 0 deletions ledger_secure_sdk_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
3 changes: 3 additions & 0 deletions testmacro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "testmacro"
version = "0.1.0"
authors = ["yhql <[email protected]>"]
edition = "2018"
license.workspace = true
repository.workspace = true
description = "procedural macro used to run unit and integration tests"

[lib]
proc-macro = true
Expand Down

0 comments on commit e7b6471

Please sign in to comment.