diff --git a/.github/workflows/build-and-test-grpc.yml b/.github/workflows/build-and-test-grpc.yml index 7f7873308a..80311728c8 100644 --- a/.github/workflows/build-and-test-grpc.yml +++ b/.github/workflows/build-and-test-grpc.yml @@ -32,7 +32,7 @@ jobs: - name: Check out the repo uses: actions/checkout@v4 - - name: Build and push Docker image + - name: Build Docker image uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 with: context: . diff --git a/bindings/grpc/Cargo.toml b/bindings/grpc/Cargo.toml index 0aba12461f..8d22802dea 100644 --- a/bindings/grpc/Cargo.toml +++ b/bindings/grpc/Cargo.toml @@ -17,19 +17,19 @@ name = "identity-grpc" path = "src/main.rs" [dependencies] -tonic = "0.10" -prost = "0.12" -tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } anyhow = "1.0.75" -tokio-stream = { version = "0.1.14", features = ["net"] } -identity_iota = { path = "../../identity_iota", features = ["resolver", "sd-jwt"] } identity_eddsa_verifier = { path = "../../identity_eddsa_verifier" } +identity_iota = { path = "../../identity_iota", features = ["resolver", "sd-jwt"] } identity_stronghold = { path = "../../identity_stronghold", features = ["send-sync-storage"] } iota-sdk = { version = "1.1.2", features = ["stronghold"] } -serde_json = { version = "1.0.108", features = ["alloc"] } -thiserror = "1.0.50" +prost = "0.12" rand = "0.8.5" serde = { version = "1.0.193", features = ["derive", "alloc"] } +serde_json = { version = "1.0.108", features = ["alloc"] } +thiserror = "1.0.50" +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } +tokio-stream = { version = "0.1.14", features = ["net"] } +tonic = "0.10" tracing = { version = "0.1.40", features = ["async-await"] } tracing-subscriber = "0.3.18"