Browse Source

Remove tokio dependency from cmake example

xshell
Philipp Oppermann 1 year ago
parent
commit
6fba72165a
Failed to extract signature
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      examples/cmake-dataflow/run.rs

+ 1
- 2
examples/cmake-dataflow/run.rs View File

@@ -3,8 +3,7 @@ use eyre::{Context, ContextCompat};
use std::path::{Path, PathBuf};
use xshell::{cmd, Shell};

#[tokio::main]
async fn main() -> eyre::Result<()> {
fn main() -> eyre::Result<()> {
set_up_tracing("cmake-dataflow-runner").wrap_err("failed to set up tracing")?;

if cfg!(windows) {


Loading…
Cancel
Save