Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependences #2072

Merged
merged 23 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3a0ed13
build(github): extract Rust toolchain version from rust-toolchain.toml
lklimek Aug 23, 2024
c82206c
build(cargo.toml): inherit rust-version from workspace
lklimek Aug 23, 2024
5dec617
build(Docker): take rust version from rust-toolchain.toml
lklimek Aug 23, 2024
cd9052d
chore: minor fix in update-rust-version.sh
lklimek Aug 23, 2024
23fd002
build(deps): update rust to 1.80
lklimek Aug 23, 2024
efac9fc
chore: remove unneeded comment
lklimek Aug 23, 2024
74bdda3
build: update tonic, prost, tokio and other dependencies
lklimek Aug 23, 2024
9610a6e
build: update http dep
lklimek Aug 23, 2024
2cc0c29
build: bump deps of rs-dpp, s-dapi-client
lklimek Aug 23, 2024
6fb89d1
build(dpp): bump derive_more dependency
lklimek Aug 23, 2024
ddc91d1
build(deps): bump rs-drive
lklimek Aug 23, 2024
b64c27f
build(deps): bump rs-drive-abci
lklimek Aug 23, 2024
756e350
build: other deps
lklimek Aug 23, 2024
aeb9573
build: update derive_more
lklimek Aug 23, 2024
2687b81
chore(drive): remove atty due to RUSTSEC-2021-0145
lklimek Aug 23, 2024
93384fd
chore: update Cargo.lock
lklimek Aug 23, 2024
5c32a63
build: bump protoc to 27.3
lklimek Aug 23, 2024
55ec866
Merge remote-tracking branch 'origin/v1.4-dev' into build/update-deps…
lklimek Oct 7, 2024
2d5aad9
build: bump rs-tenderdash-abci to 1.2.1
lklimek Oct 7, 2024
93144a3
chore: cargo fmt
lklimek Oct 7, 2024
aa4a38b
chore: less features of metrics-exporter-prometheus to remove aws-lc-…
lklimek Oct 7, 2024
f132a7e
build: update tokio
lklimek Oct 7, 2024
610f588
chore: update protoc version to 27.3 in devcontainer and readme
lklimek Oct 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ runs:
shell: bash
run: |
curl -Lo /tmp/protoc.zip \
"https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-${{ steps.protoc_arch.outputs.arch }}.zip"
"https://github.com/protocolbuffers/protobuf/releases/download/v27.3/protoc-27.3-linux-${{ steps.protoc_arch.outputs.arch }}.zip"
unzip -o /tmp/protoc.zip -d ${HOME}/.local
echo "PROTOC=${HOME}/.local/bin/protoc" >> $GITHUB_ENV
export PATH="${PATH}:${HOME}/.local/bin"
Expand Down
Loading
Loading