1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/actix-protobuf/Cargo.toml

28 lines
835 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
2022-06-26 01:36:27 +02:00
version = "0.8.0"
2020-01-01 17:04:00 +01:00
edition = "2018"
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-09 20:55:38 +02:00
description = "Protobuf support for Actix Web"
2022-06-26 01:36:27 +02: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 15:13:21 +01:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
2022-02-26 00:05:11 +01:00
actix-web = { version = "4", default_features = false }
2021-04-02 12:44:18 +02:00
derive_more = "0.99.5"
futures-util = { version = "0.3.7", default-features = false }
prost = { version = "0.10", default_features = false }
2018-03-13 15:13:21 +01:00
[dev-dependencies]
2022-02-26 00:05:11 +01:00
actix-web = { version = "4", default_features = false, features = ["macros"] }
prost = { version = "0.10", default_features = false, features = ["prost-derive"] }