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
Inherit package version from workspace root
This way, we don't need to update the version manually in all sub-crates on every release.
tags/v0.1.2
Philipp Oppermann
3 years ago
parent
182206b737
commit
d8260d5d2c
Failed to extract signature
28 changed files
with
31 additions
and
27 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
Cargo.toml
+1
-1
apis/c++/node/Cargo.toml
+1
-1
apis/c++/operator/Cargo.toml
+1
-1
apis/c/node/Cargo.toml
+1
-1
apis/c/operator/Cargo.toml
+1
-1
apis/python/operator/Cargo.toml
+1
-1
apis/rust/node/Cargo.toml
+1
-1
apis/rust/operator/Cargo.toml
+1
-1
apis/rust/operator/macros/Cargo.toml
+1
-1
apis/rust/operator/types/Cargo.toml
+1
-1
binaries/cli/Cargo.toml
+1
-1
binaries/coordinator/Cargo.toml
+1
-1
binaries/runtime/Cargo.toml
+1
-1
examples/iceoryx/node/Cargo.toml
+1
-1
examples/iceoryx/operator/Cargo.toml
+1
-1
examples/iceoryx/sink/Cargo.toml
+1
-1
examples/rust-dataflow-url/sink/Cargo.toml
+1
-1
examples/rust-dataflow/node/Cargo.toml
+1
-1
examples/rust-dataflow/operator/Cargo.toml
+1
-1
examples/rust-dataflow/sink/Cargo.toml
+1
-1
libraries/communication-layer/pub-sub/Cargo.toml
+1
-1
libraries/communication-layer/request-reply/Cargo.toml
+1
-1
libraries/core/Cargo.toml
+1
-1
libraries/extensions/download/Cargo.toml
+1
-1
libraries/extensions/telemetry/metrics/Cargo.toml
+1
-1
libraries/extensions/telemetry/tracing/Cargo.toml
+1
-1
libraries/extensions/zenoh-logger/Cargo.toml
+1
-1
libraries/message/Cargo.toml
+ 4
- 0
Cargo.toml
View File
@@ -18,12 +18,16 @@ members = [
"libraries/extensions/zenoh-logger",
]
[workspace.package]
version = "0.1.1"
[package]
name = "dora-examples"
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"
[dev-dependencies]
eyre = "0.6.8"
tokio = "1.20.1"
+ 1
- 1
apis/c++/node/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-node-api-cxx"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
apis/c++/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-cxx"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
[lib]
+ 1
- 1
apis/c/node/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-node-api-c"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
apis/c/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-c"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "C API implemetation for Dora Operator"
+ 1
- 1
apis/python/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-python"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
apis/rust/node/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-node-api"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
apis/rust/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API implemetation for Dora Operator"
+ 1
- 1
apis/rust/operator/macros/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-macros"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API Macros for Dora Operator"
+ 1
- 1
apis/rust/operator/types/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-types"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
binaries/cli/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-cli"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
binaries/coordinator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-coordinator"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
binaries/runtime/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-runtime"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
examples/iceoryx/node/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-node"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
examples/iceoryx/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-operator"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
examples/iceoryx/sink/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-sink"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
examples/rust-dataflow-url/sink/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-sink"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
examples/rust-dataflow/node/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-node"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
examples/rust-dataflow/operator/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-operator"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
examples/rust-dataflow/sink/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-sink"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+ 1
- 1
libraries/communication-layer/pub-sub/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "communication-layer-pub-sub"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
[features]
+ 1
- 1
libraries/communication-layer/request-reply/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "communication-layer-request-reply"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
[features]
+ 1
- 1
libraries/core/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-core"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
libraries/extensions/download/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-download"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
libraries/extensions/telemetry/metrics/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-metrics"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
libraries/extensions/telemetry/tracing/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-tracing"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
libraries/extensions/zenoh-logger/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "zenoh-logger"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
+ 1
- 1
libraries/message/Cargo.toml
View File
@@ -1,6 +1,6 @@
[package]
name = "dora-message"
version
= "0.1.1"
version
.workspace = true
edition = "2021"
license = "Apache-2.0"
Write
Preview
Loading…
Cancel
Save