-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Compile-time checked State * Remove references to state map * Derive From impl for app state * Added docs and fixed docs
- Loading branch information
1 parent
313c2e8
commit 46fdb7b
Showing
23 changed files
with
403 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kanin" | ||
version = "0.27.0" | ||
version = "0.28.0" | ||
edition = "2021" | ||
authors = ["Victor Nordam Suadicani <[email protected]>"] | ||
description = "An RPC microservice framework for AMQP, protobuf and Rust built on lapin (https://github.com/amqp-rs/lapin)." | ||
|
@@ -13,7 +13,7 @@ readme = "../README.md" | |
|
||
[dependencies] | ||
# Derive macros for traits in kanin. | ||
kanin_derive = "0.5.2" | ||
kanin_derive = "0.6.0" | ||
|
||
# Lower level AMQP framework. | ||
lapin = "2.1.0" | ||
|
@@ -43,9 +43,6 @@ derive_more = "0.99.17" | |
# Great for structured errors. | ||
thiserror = "1.0.30" | ||
|
||
# Provides a map from types to a single value of that type. | ||
anymap = "1.0.0-beta.1" | ||
|
||
[dev-dependencies] | ||
# Concrete logging implementation. | ||
env_logger = "0.10.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.