2018-03-13 15:13:21 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-protobuf"
|
2020-07-06 08:56:25 +02:00
|
|
|
version = "0.6.0-alpha.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"
|
2020-07-14 12:16:32 +02:00
|
|
|
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]
|
2020-09-11 17:26:15 +02:00
|
|
|
actix-web = { version = "3.0.0", default_features = false }
|
|
|
|
actix-rt = "1.1.1"
|
|
|
|
|
2020-01-24 07:41:57 +01:00
|
|
|
bytes = "0.5"
|
2020-05-21 10:12:17 +02:00
|
|
|
futures-util = { version = "0.3.5", default-features = false }
|
2020-01-01 19:40:29 +01:00
|
|
|
derive_more = "0.99"
|
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"
|