Skip to content

Commit f13a001

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

File tree

2 files changed

+575
-247
lines changed

2 files changed

+575
-247
lines changed

actix-protobuf/Cargo.toml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-protobuf"
3-
version = "0.8.0"
3+
version = "0.8.0-experiment"
44
edition = "2018"
55
authors = [
66
"kingxsp <[email protected]>",
@@ -12,16 +12,11 @@ homepage = "https://actix.rs"
1212
repository = "https://github.com/actix/actix-extras.git"
1313
license = "MIT OR Apache-2.0"
1414

15-
[lib]
16-
name = "actix_protobuf"
17-
path = "src/lib.rs"
18-
1915
[dependencies]
2016
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"] }
17+
prost = { version = "0.10"}
18+
futures-core = "0.3.21"
19+
cfg-if = "1.0.0"
20+
actix-http = "3.2.1"
21+
derive_more = "0.99.17"
22+
actix-rt = "2.7.0"

0 commit comments

Comments
 (0)