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

29 lines
820 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
version = "0.7.0-beta.2"
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>",
"Yuki Okushi <huyuumi.dev@gmail.com>"
]
description = "Protobuf support for Actix web"
keywords = ["actix", "protobuf", "protocol", "rpc"]
homepage = "https://actix.rs"
2021-06-27 08:02:38 +02:00
repository = "https://github.com/actix/actix-extras"
license = "MIT OR Apache-2.0"
2020-01-30 10:08:20 +01:00
exclude = [".cargo/config", "/examples/**"]
2018-03-13 15:13:21 +01:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
2021-03-21 23:50:26 +01:00
actix-rt = "2"
actix-web = { version = "4.0.0-beta.10", 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.8", default_features = false }
2018-03-13 15:13:21 +01:00
[dev-dependencies]
prost = { version = "0.8", default_features = false, features = ["prost-derive"] }