This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Bump which version
tags/v0.3.1-rc5
haixuanTao
2 years ago
parent
82f2794916
commit
ea1259da20
5 changed files
with
1169 additions
and
112 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1164
-108
Cargo.lock
+1
-1
binaries/coordinator/Cargo.toml
+1
-1
binaries/daemon/Cargo.toml
+1
-1
libraries/core/Cargo.toml
+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,
Write
Preview
Loading…
Cancel
Save