1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-30 18:34:36 +01:00
actix-extras/actix-protobuf/Cargo.toml

29 lines
894 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
version = "0.7.0-beta.5"
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"
repository = "https://github.com/actix/actix-extras.git"
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]
2022-02-03 23:33:47 +01:00
actix-web = { version = "4.0.0-rc.1", 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 }
2022-02-03 23:14:13 +01:00
prost = { version = "0.9", default_features = false }
2018-03-13 15:13:21 +01:00
[dev-dependencies]
2022-02-03 23:33:47 +01:00
actix-web = { version = "4.0.0-rc.2", default_features = false, features = ["macros"] }
2022-02-03 23:14:13 +01:00
prost = { version = "0.9", default_features = false, features = ["prost-derive"] }