-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new persistence apis, dependency upgrades, fix numerous dependency is…
…sues, change network codec to use LengthDelimited codec, other minor optimisations new persistence apis: - write_message_batch - read_messages - read_messages - delete_messages_to
- Loading branch information
1 parent
8174bea
commit fc14e61
Showing
30 changed files
with
1,086 additions
and
338 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "coerce" | ||
description = "Async actor runtime and distributed systems framework" | ||
license = "Apache-2.0" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
authors = ["Leon Hartley <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -80,7 +80,7 @@ async-trait = { version = "0.1" } | |
hashring = { version = "0.3.0", optional = true } | ||
bytes = { version = "1.4.0", optional = true } | ||
byteorder = { version = "1.4.3", optional = true } | ||
chrono = { version = "0.4.23", features = ["serde"], optional = true } | ||
chrono = { version = "0.4", features = ["serde"], optional = true } | ||
protobuf = { version = "3.2.0", optional = true } | ||
anyhow = { version = "1.0.68", optional = true } | ||
rand = "0.8.5" | ||
|
@@ -95,8 +95,8 @@ sha2 = { version = "0.10.6", optional = true } | |
|
||
# API dependencies | ||
axum = { version = "0.6.4", features = ["query"], optional = true } | ||
utoipa = { version = "3.0.1", features = ["axum_extras"], optional = true } | ||
utoipa-swagger-ui = { version = "3.0.2", features = ["axum"], optional = true } | ||
utoipa = { version = "3", features = ["axum_extras", "chrono"], optional = true } | ||
utoipa-swagger-ui = { version = "3", features = ["axum"], optional = true } | ||
|
||
[dev-dependencies] | ||
coerce-macros = { version = "0.2.0" } | ||
|
Oops, something went wrong.