Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: release fixes #222

Merged
merged 3 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading