2018-03-13 15:13:21 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-protobuf"
|
2023-09-16 04:07:01 +02:00
|
|
|
version = "0.10.0"
|
2020-09-11 22:22:55 +02:00
|
|
|
authors = [
|
|
|
|
"kingxsp <jin.hb.zh@outlook.com>",
|
2022-06-26 01:36:27 +02:00
|
|
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
2020-09-11 22:22:55 +02:00
|
|
|
]
|
2022-07-21 04:07:06 +02:00
|
|
|
description = "Protobuf payload extractor for Actix Web"
|
2022-06-26 01:36:27 +02:00
|
|
|
keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
|
2020-10-03 02:32:01 +02:00
|
|
|
homepage = "https://actix.rs"
|
2021-12-08 08:29:12 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2023-09-16 01:30:38 +02:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-03-13 15:13:21 +01:00
|
|
|
|
2023-04-11 13:22:28 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
2018-03-13 15:13:21 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4", default-features = false }
|
2023-01-07 02:08:01 +01:00
|
|
|
derive_more = "0.99.7"
|
2023-09-16 04:14:04 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2023-09-16 02:25:08 +02:00
|
|
|
prost = { version = "0.12", default-features = false }
|
2018-03-13 15:13:21 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4", default-features = false, features = ["macros"] }
|
2023-09-16 02:25:08 +02:00
|
|
|
prost = { version = "0.12", default-features = false, features = ["prost-derive"] }
|