Skip to content

Commit

Permalink
Merge branch 'main' into grpc-bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
UMR1352 committed Jan 18, 2024
2 parents 51adf63 + f372b35 commit 0077272
Show file tree
Hide file tree
Showing 53 changed files with 2,885 additions and 132 deletions.
15 changes: 15 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# More details are here: https://help.github.com/articles/about-codeowners/

# The '*' pattern is global owners.

# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:

# In each subsection folders are ordered first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.

# Global rule:
* @iotaledger/identity
5 changes: 3 additions & 2 deletions .github/actions/publish/publish-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ runs:

- name: Install cargo-release
shell: bash
run: cargo install --version =0.20.1 cargo-release
run: cargo install --version =0.25 cargo-release

- name: Publish library to crates.io
shell: bash
run: |
echo "dry-run: '${{ inputs.dry-run }}'"
echo "version: '${{ inputs.version }}'"
cargo release --workspace --token ${{ inputs.crates-token }} --isolated --no-dev-version --no-push --no-tag --dependent-version error --verbose $(if [ "${{ inputs.dry-run }}" = "false" ]; then echo --execute --no-confirm; fi) ${{ inputs.version }}
cargo login ${{ inputs.crates-token }}
cargo release --workspace --isolated --no-dev-version --no-push --no-tag --dependent-version error --verbose $(if [ "${{ inputs.dry-run }}" = "false" ]; then echo --execute --no-confirm; fi) ${{ inputs.version }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ version = "1.0.0"
edition = "2021"

[dependencies]
identity_iota = { version = "1.0.0" }
identity_iota = {version = "1.0.0", features = ["memstore"]}
iota-sdk = { version = "1.0.2", default-features = true, features = ["tls", "client", "stronghold"] }
tokio = { version = "1", features = ["full"] }
```
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ wasm-bindgen-futures = { version = "0.4", default-features = false }
version = "1.0.0"
path = "../../identity_iota"
default-features = false
features = ["client", "revocation-bitmap", "resolver", "domain-linkage"]
features = ["client", "revocation-bitmap", "resolver", "domain-linkage", "sd-jwt"]

[dev-dependencies]
rand = "0.8.5"
Expand Down
11 changes: 11 additions & 0 deletions bindings/wasm/cypress/e2e/1_advanced/6_sd_jwt.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { sdJwt } from "../../../examples/dist/web/1_advanced/6_sd_jwt";
import { setup } from "../../support/setup";

describe(
"SdJwt",
() => {
it("SD Jwt", async () => {
await setup(sdJwt);
});
},
);
Loading

0 comments on commit 0077272

Please sign in to comment.