Browse Source

change in github actions to use rustc 1.84.0+ necessary for some dependencies

tags/v0.3.11-rc1
Haroon Tahir 10 months ago
parent
commit
d5b27b00ca
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/workflows/node-hub-ci-cd.yml
  2. +1
    -1
      node-hub/dora-mistral-rs/src/main.rs

+ 1
- 1
.github/workflows/node-hub-ci-cd.yml View File

@@ -72,7 +72,7 @@ jobs:

- name: Set up Rust
if: runner.os == 'Linux' || github.event_name == 'workflow_dispatch' || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/'))
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true


+ 1
- 1
node-hub/dora-mistral-rs/src/main.rs View File

@@ -52,7 +52,7 @@ async fn main() -> Result<()> {
other => eprintln!("Received input `{other}`"),
},
Event::Stop => {
println!("Recieved manual stop")
println!("Received manual stop")
}
Event::InputClosed { id } => {
println!("input `{id}` was closed");


Loading…
Cancel
Save