-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented alternative protobuf implementation
- Loading branch information
Thomas Hain
committed
Aug 14, 2022
1 parent
bad6159
commit 1780f7e
Showing
2 changed files
with
575 additions
and
251 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,18 @@ | ||
[package] | ||
name = "actix-protobuf" | ||
version = "0.8.0" | ||
version = "0.8.0-experiment" | ||
edition = "2018" | ||
authors = [ | ||
"kingxsp <[email protected]>", | ||
"Yuki Okushi <[email protected]>", | ||
] | ||
description = "Protobuf payload extractor for Actix Web" | ||
keywords = ["actix", "web", "protobuf", "protocol", "rpc"] | ||
homepage = "https://actix.rs" | ||
repository = "https://github.com/actix/actix-extras.git" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[lib] | ||
name = "actix_protobuf" | ||
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
actix-web = { version = "4", default_features = false } | ||
derive_more = "0.99.5" | ||
futures-util = { version = "0.3.7", default-features = false } | ||
prost = { version = "0.10", default_features = false } | ||
|
||
[dev-dependencies] | ||
actix-web = { version = "4", default_features = false, features = ["macros"] } | ||
prost = { version = "0.10", default_features = false, features = ["prost-derive"] } | ||
prost = { version = "0.10"} | ||
futures-core = "0.3.21" | ||
cfg-if = "1.0.0" | ||
actix-http = "3.2.1" | ||
derive_more = "0.99.17" | ||
actix-rt = "2.7.0" |
Oops, something went wrong.