Skip to content

Commit

Permalink
changes rust from nightly to stable on ci
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Calza <[email protected]>
  • Loading branch information
brunocalza committed Nov 7, 2023
1 parent 7df8143 commit 77ef489
Show file tree
Hide file tree
Showing 8 changed files with 9,136 additions and 6,682 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: rustfmt

Expand All @@ -43,7 +43,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true

- name: Install tomlfmt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
os:
- ubuntu-latest
toolchain:
- nightly
- stable
steps:
- name: Checkout source code
uses: actions/checkout@v4
Expand Down
2,119 changes: 903 additions & 1,216 deletions lib/evm/src/contract.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/protocol/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mod schema;

pub use schema::{publications, schema as tableschema, tx, deal_info};
pub use schema::{deal_info, publications, schema as tableschema, tx};
2 changes: 1 addition & 1 deletion lib/protocol/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
mod definitions_capnp;
mod provider_capnp;

pub use definitions_capnp::{schema, tx, deal_info};
pub use definitions_capnp::{deal_info, schema, tx};
pub use provider_capnp::publications;
4,520 changes: 2,676 additions & 1,844 deletions lib/protocol/src/schema/definitions_capnp.rs

Large diffs are not rendered by default.

9,167 changes: 5,551 additions & 3,616 deletions lib/protocol/src/schema/provider_capnp.rs

Large diffs are not rendered by default.

0 comments on commit 77ef489

Please sign in to comment.