Skip to content

Commit

Permalink
Merge branch 'main' into afo/fix-serialization-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemka374 authored Mar 10, 2025
2 parents c70f929 + fae3d84 commit 1510a2a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo-license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
with:
manifest-path: "./core/Cargo.toml"
command: check
command-arguments: "--hide-inclusion-graph"
command-arguments: "--allow unmaintained --hide-inclusion-graph"
5 changes: 4 additions & 1 deletion .github/workflows/publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:

publish-crates:
name: Publish to crates.io
runs-on: matterlabs-ci-runner-high-performance
runs-on: matterlabs-ci-runner-highdisk
env:
ZKSYNC_USE_CUDA_STUBS: true
steps:
- name: Publish crates
uses: matter-labs/zksync-ci-common/.github/actions/publish-crates@v1
Expand All @@ -40,3 +42,4 @@ jobs:
run_build: ${{ inputs.run-build }}
run_tests: ${{ inputs.run-tests }}
gh_token: ${{ secrets.GITHUB_TOKEN }}
dependencies: 'clang libclang-dev'
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
upgrade-dependencies: true # Upgrade cross-workspace dependencies
version-suffix: 'non-semver-compat' # Version suffix for the crates.io release
workspace-dirs: 'core prover zkstack_cli' # List of additional workspace directories to update Cargo.lock
dependencies: 'clang libclang-dev' # Additional Linux dependencies to install

# Trigger workflow to publish zkstack binaries
release-zkstack-cli-bins:
Expand Down
11 changes: 5 additions & 6 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/bin/custom_genesis_export/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish = false

[dependencies]
clap = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion core/lib/queued_job_processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
tokio = { workspace = true, features = ["time"] }
tokio = { workspace = true, features = ["sync", "time"] }
tracing.workspace = true

zksync_utils.workspace = true
Expand Down
1 change: 1 addition & 0 deletions core/lib/test_contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish = false

[dependencies]
zksync_types.workspace = true
Expand Down

0 comments on commit 1510a2a

Please sign in to comment.