diff --git a/.github/workflows/dependencies.yaml b/.github/workflows/dependencies.yaml index d741a13..1ef90b3 100644 --- a/.github/workflows/dependencies.yaml +++ b/.github/workflows/dependencies.yaml @@ -19,18 +19,6 @@ jobs: - run: cargo install --locked cargo-audit - run: cargo audit - are-dependencies-sorted: - name: Are the dependencies sorted? - needs: [pass-security-audit] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/rust-toolchain - with: - toolchain: 1.70 - - run: cargo install --locked cargo-sort - - run: cargo sort --workspace --check - are-versions-really-minimal: name: Are versions really minimal? needs: [pass-security-audit] diff --git a/Cargo.toml b/Cargo.toml index 011d23c..2da2746 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,9 @@ members = [ "urtypes/fuzz", ] +[workspace.package] +homepage = "https://github.com/Foundation-Devices/foundation-rs" + [workspace.dependencies] arbitrary = { version = "1", features = ["derive"] } bech32 = { version = "0.9", default-features = false } diff --git a/ur/Cargo.toml b/ur/Cargo.toml index bcda876..b98c7a4 100644 --- a/ur/Cargo.toml +++ b/ur/Cargo.toml @@ -8,6 +8,12 @@ authors = [ "Dominik Spicher ", "Foundation Devices, Inc. ", ] +description = """ +Implementation of Blockchain Common's Uniform Resources (UR) standard, +with static memory allocation for embedded devices while also allowing +to use dynamic memory allocation for platforms with more resources. +""" +homepage.workspace = true version = "0.1.0" edition = "2021" license = "MIT"