1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00

28 lines
845 B
TOML
Raw Normal View History

2018-03-13 22:13:21 +08:00
[package]
name = "actix-protobuf"
2022-08-24 18:07:47 +01:00
version = "0.9.0"
2020-01-02 01:04:00 +09:00
edition = "2018"
2020-09-11 21:22:55 +01:00
authors = [
"kingxsp <jin.hb.zh@outlook.com>",
2022-06-26 00:36:27 +01:00
"Yuki Okushi <huyuumi.dev@gmail.com>",
2020-09-11 21:22:55 +01:00
]
2022-07-21 03:07:06 +01:00
description = "Protobuf payload extractor for Actix Web"
2022-06-26 00:36:27 +01:00
keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
2018-03-13 22:13:21 +08:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
2022-02-25 23:05:11 +00:00
actix-web = { version = "4", default_features = false }
2021-04-02 11:44:18 +01:00
derive_more = "0.99.5"
futures-util = { version = "0.3.7", default-features = false }
prost = { version = "0.11", default_features = false }
2018-03-13 22:13:21 +08:00
[dev-dependencies]
2022-02-25 23:05:11 +00:00
actix-web = { version = "4", default_features = false, features = ["macros"] }
prost = { version = "0.11", default_features = false, features = ["prost-derive"] }