Skip to content

Commit

Permalink
fix: release fixes (dapr#222)
Browse files Browse the repository at this point in the history
* fix: release fixes

Signed-off-by: mikeee <[email protected]>

* fix: refactor path and add absolute examples url

Signed-off-by: mikeee <[email protected]>

* fix: add dapr dev dep

Signed-off-by: mikeee <[email protected]>

---------

Signed-off-by: mikeee <[email protected]>
  • Loading branch information
mikeee committed Aug 27, 2024
1 parent cae85cb commit 34f6b34
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ jobs:
- name: cargo publish dapr-macros
run: cargo publish --manifest-path dapr-macros/Cargo.toml --token ${{ env.CARGO_TOKEN }}
- name: cargo publish dapr
run: cargo publish --token ${{ env.CARGO_TOKEN }}
run: cargo publish --manifest-path dapr/Cargo.toml --token ${{ env.CARGO_TOKEN }}
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ resolver = "2"
[workspace.dependencies]
async-trait = "0.1"

dapr = { version = "0.16.0-rc.0", path = "./dapr" }
dapr-macros = { version = "0.16.0-rc.0", path = "./dapr-macros" }

prost = "0.13.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {

## Explore more examples

Browse through more examples to understand the SDK better: [View examples](./examples)
Browse through more examples to understand the SDK better: [View examples](https://github.com/dapr/rust-sdk/tree/main/examples)

## Building

Expand Down
2 changes: 1 addition & 1 deletion dapr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ tokio-util = { workspace = true, features = ["io"] }
[dev-dependencies]
axum-test = "15.3"
once_cell = "1.19"
dapr = { path = "./" }
tokio = { workspace = true, features = ["full"] }
uuid = { version = "1.10", features = ["v4"] }
dapr = { workspace = true }
tokio-test = { workspace = true }
tokio-stream = { workspace = true }
1 change: 1 addition & 0 deletions dapr/README.md
4 changes: 2 additions & 2 deletions dapr/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#![doc = include_str!("../../README.md")]
#![doc = include_str!("../README.md")]

extern crate dapr_macros;

pub use dapr_macros::actor;
pub use serde;
pub use serde_json;

pub use client::Client;
pub use dapr_macros::actor;

/// Module containing the Dapr Callback SDK.
pub mod appcallback;
Expand Down

0 comments on commit 34f6b34

Please sign in to comment.