Browse Source

Fix template for `v0.1.1`

tags/v0.1.1-test-9-python-runtime
haixuanTao 3 years ago
parent
commit
e4cc3cf2a1
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      Cargo.lock
  2. +1
    -1
      binaries/cli/src/template/rust/node/Cargo-template.toml
  3. +1
    -1
      binaries/cli/src/template/rust/node/main-template.rs
  4. +1
    -1
      binaries/cli/src/template/rust/operator/Cargo-template.toml
  5. +1
    -1
      libraries/communication-layer/pub-sub/Cargo.toml

+ 1
- 1
Cargo.lock View File

@@ -529,7 +529,7 @@ dependencies = [

[[package]]
name = "communication-layer-pub-sub"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"eyre",
"iceoryx-rs",


+ 1
- 1
binaries/cli/src/template/rust/node/Cargo-template.toml View File

@@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { git = "https://github.com/dora-rs/dora.git" }
dora-node-api = { git = "https://github.com/dora-rs/dora.git", tag = "v0.1.1" }

+ 1
- 1
binaries/cli/src/template/rust/node/main-template.rs View File

@@ -1,4 +1,4 @@
use dora_node_api::{self, core::config::DataId, DoraNode};
use dora_node_api::DoraNode;
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {


+ 1
- 1
binaries/cli/src/template/rust/operator/Cargo-template.toml View File

@@ -9,4 +9,4 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
dora-operator-api = { git = "https://github.com/dora-rs/dora.git" }
dora-operator-api = { git = "https://github.com/dora-rs/dora.git", tag = "v0.1.1" }

+ 1
- 1
libraries/communication-layer/pub-sub/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "communication-layer-pub-sub"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

[features]


Loading…
Cancel
Save