2018-03-13 15:13:21 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-protobuf"
|
2020-02-17 16:55:33 +01:00
|
|
|
version = "0.5.1"
|
2020-01-01 17:04:00 +01:00
|
|
|
edition = "2018"
|
2020-02-13 23:42:56 +01:00
|
|
|
authors = ["kingxsp <jin.hb.zh@outlook.com>", "Yuki Okushi <huyuumi.dev@gmail.com>"]
|
2018-03-21 23:49:58 +01:00
|
|
|
description = "Protobuf support for actix-web framework."
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["actix"]
|
2020-01-30 10:08:20 +01:00
|
|
|
homepage = "https://github.com/actix/actix-extras"
|
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2018-03-21 23:49:58 +01:00
|
|
|
license = "MIT/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]
|
2020-01-24 07:41:57 +01:00
|
|
|
bytes = "0.5"
|
2020-01-01 19:40:29 +01:00
|
|
|
futures = "0.3.1"
|
|
|
|
derive_more = "0.99"
|
2018-03-13 15:13:21 +01:00
|
|
|
|
2020-01-01 19:40:29 +01:00
|
|
|
actix = "0.9"
|
|
|
|
actix-rt = "1"
|
|
|
|
actix-web = "2"
|
2018-03-13 15:13:21 +01:00
|
|
|
|
2020-01-15 17:48:34 +01:00
|
|
|
prost = "0.6.0"
|
2018-03-13 15:13:21 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-01-15 17:48:34 +01:00
|
|
|
prost-derive = "0.6.0"
|