Skip to content

Commit

Permalink
add documentation and description to all crates
Browse files Browse the repository at this point in the history
test rc 2 version

fix version typo

Test crates.io new dora tag release
  • Loading branch information
haixuanTao committed Mar 21, 2023
1 parent 6b13068 commit 101ddd2
Show file tree
Hide file tree
Showing 23 changed files with 83 additions and 44 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
-p dora-coordinator -p dora-cli -p dora-daemon"

- name: "Publish packages on `crates.io`"
if: runner.os == 'Linux'
run: |
# Publish libraries crates
cargo publish -p dora-message --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ members = [
]

[workspace.package]
version = "0.2.0-rc"
version = "0.2.0-rc-3"
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
documentation = "https://dora-rs.github.io/dora"
documentation = "https://dora.carsmos.ai/dora/"

[workspace.dependencies]
dora-node-api = { version = "0.2.0-rc", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.2.0-rc", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.2.0-rc", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.2.0-rc", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.2.0-rc", path = "apis/python/operator" }
dora-core = { version = "0.2.0-rc", path = "libraries/core" }
dora-tracing = { version = "0.2.0-rc", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.2.0-rc", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.2.0-rc", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.2.0-rc", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.2.0-rc", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.2.0-rc", path = "libraries/message" }
dora-runtime = { version = "0.2.0-rc", path = "binaries/runtime" }
dora-daemon = { version = "0.2.0-rc", path = "binaries/daemon" }
dora-node-api = { version = "0.2.0-rc-3", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.2.0-rc-3", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.2.0-rc-3", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.2.0-rc-3", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.2.0-rc-3", path = "apis/python/operator" }
dora-core = { version = "0.2.0-rc-3", path = "libraries/core" }
dora-tracing = { version = "0.2.0-rc-3", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.2.0-rc-3", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.2.0-rc-3", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.2.0-rc-3", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.2.0-rc-3", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.2.0-rc-3", path = "libraries/message" }
dora-runtime = { version = "0.2.0-rc-3", path = "binaries/runtime" }
dora-daemon = { version = "0.2.0-rc-3", path = "binaries/daemon" }

[package]
name = "dora-examples"
Expand Down
2 changes: 2 additions & 0 deletions apis/c++/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "dora-node-api-cxx"
version.workspace = true
edition = "2021"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions apis/c++/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "dora-operator-api-cxx"
version.workspace = true
edition = "2021"
documentation.workspace = true
description.workspace = true

[lib]
crate-type = ["staticlib"]
Expand Down
2 changes: 2 additions & 0 deletions apis/c/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "dora-node-api-c"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions apis/c/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "C API implemetation for Dora Operator"
documentation.workspace = true

[build-dependencies]
dora-operator-api-types = { workspace = true }
2 changes: 2 additions & 0 deletions apis/python/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ version.workspace = true
name = "dora-node-api-python"
edition = "2021"
license = "Apache-2.0"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions apis/python/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "dora-operator-api-python"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions apis/rust/operator/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API Macros for Dora Operator"
documentation.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions apis/rust/operator/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "dora-operator-api-types"
version.workspace = true
edition = "2021"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions binaries/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "dora-cli"
version.workspace = true
edition = "2021"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions binaries/coordinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "dora-coordinator"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions binaries/daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "dora-daemon"
version.workspace = true
edition = "2021"
documentation.workspace = true
description.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Loading

0 comments on commit 101ddd2

Please sign in to comment.