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"]
|
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"
|
2020-07-14 12:16:32 +02:00
|
|
|
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"
|
2021-03-22 06:18:59 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|
2022-06-26 01:28:16 +02:00
|
|
|
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"] }
|
2022-06-26 01:28:16 +02:00
|
|
|
prost = { version = "0.10", default_features = false, features = ["prost-derive"] }
|