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

32 lines
958 B
TOML
Raw Normal View History

2018-03-13 22:13:21 +08:00
[package]
name = "actix-protobuf"
version = "0.11.0"
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"]
2024-06-20 02:18:37 +01:00
repository.workspace = true
homepage.workspace = true
2023-09-16 00:30:38 +01:00
license.workspace = true
edition.workspace = true
rust-version.workspace = true
2018-03-13 22:13:21 +08:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
2018-03-13 22:13:21 +08:00
[dependencies]
2023-03-22 20:51:14 +00:00
actix-web = { version = "4", default-features = false }
derive_more = { version = "1", features = ["display"] }
2023-09-16 03:14:04 +01:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
prost = { version = "0.13", default-features = false }
2018-03-13 22:13:21 +08:00
[dev-dependencies]
2023-03-22 20:51:14 +00:00
actix-web = { version = "4", default-features = false, features = ["macros"] }
prost = { version = "0.13", default-features = false, features = ["prost-derive"] }
2024-06-20 02:14:35 +01:00
[lints]
workspace = true