Skip to content

Commit 1780f7e

Browse files
author
Thomas Hain
committed
implemented alternative protobuf implementation
1 parent bad6159 commit 1780f7e

File tree

2 files changed

+575
-251
lines changed

2 files changed

+575
-251
lines changed

actix-protobuf/Cargo.toml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
[package]
22
name = "actix-protobuf"
3-
version = "0.8.0"
3+
version = "0.8.0-experiment"
44
edition = "2018"
5-
authors = [
6-
"kingxsp <[email protected]>",
7-
"Yuki Okushi <[email protected]>",
8-
]
95
description = "Protobuf payload extractor for Actix Web"
106
keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
117
homepage = "https://actix.rs"
128
repository = "https://github.com/actix/actix-extras.git"
139
license = "MIT OR Apache-2.0"
1410

15-
[lib]
16-
name = "actix_protobuf"
17-
path = "src/lib.rs"
18-
1911
[dependencies]
2012
actix-web = { version = "4", default_features = false }
21-
derive_more = "0.99.5"
22-
futures-util = { version = "0.3.7", default-features = false }
23-
prost = { version = "0.10", default_features = false }
24-
25-
[dev-dependencies]
26-
actix-web = { version = "4", default_features = false, features = ["macros"] }
27-
prost = { version = "0.10", default_features = false, features = ["prost-derive"] }
13+
prost = { version = "0.10"}
14+
futures-core = "0.3.21"
15+
cfg-if = "1.0.0"
16+
actix-http = "3.2.1"
17+
derive_more = "0.99.17"
18+
actix-rt = "2.7.0"

0 commit comments

Comments
 (0)