Browse Source

Bump which version

tags/v0.3.1-rc5
haixuanTao 2 years ago
parent
commit
ea1259da20
5 changed files with 1169 additions and 112 deletions
  1. +1164
    -108
      Cargo.lock
  2. +1
    -1
      binaries/coordinator/Cargo.toml
  3. +1
    -1
      binaries/daemon/Cargo.toml
  4. +1
    -1
      libraries/core/Cargo.toml
  5. +2
    -1
      libraries/core/src/lib.rs

+ 1164
- 108
Cargo.lock
File diff suppressed because it is too large
View File


+ 1
- 1
binaries/coordinator/Cargo.toml View File

@@ -27,7 +27,7 @@ dora-tracing = { workspace = true, optional = true }
futures-concurrency = "7.1.0"
zenoh = "0.7.0-rc"
serde_json = "1.0.86"
which = "4.3.0"
which = "5.0.0"
thiserror = "1.0.37"
ctrlc = "3.2.5"
clap = { version = "4.0.3", features = ["derive"] }


+ 1
- 1
binaries/daemon/Cargo.toml View File

@@ -39,4 +39,4 @@ bincode = "1.3.3"
async-trait = "0.1.64"
arrow-schema = { workspace = true }
aligned-vec = "0.5.0"
which = "4.3.0"
which = "5.0.0"

+ 1
- 1
libraries/core/Cargo.toml View File

@@ -14,7 +14,7 @@ serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.9.11"
serde_bytes = "0.11.12"
once_cell = "1.13.0"
which = "4.3.0"
which = "5.0.0"
uuid = { version = "1.2.1", features = ["serde"] }
dora-message = { workspace = true }
tracing = "0.1"


+ 2
- 1
libraries/core/src/lib.rs View File

@@ -1,4 +1,5 @@
use eyre::{bail, eyre, Context};
use eyre::{bail, eyre, Context, ContextCompat};
use maturin::BuildOptions;
use std::{
env::consts::{DLL_PREFIX, DLL_SUFFIX},
ffi::OsStr,


Loading…
Cancel
Save