1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-23 07:14:35 +01:00

31 lines
659 B
TOML
Raw Normal View History

2018-03-13 22:13:21 +08:00
[package]
name = "actix-protobuf"
2020-02-18 00:55:33 +09:00
version = "0.5.1"
2020-01-02 01:04:00 +09:00
edition = "2018"
2020-02-14 07:42:56 +09:00
authors = ["kingxsp <jin.hb.zh@outlook.com>", "Yuki Okushi <huyuumi.dev@gmail.com>"]
2018-03-21 15:49:58 -07:00
description = "Protobuf support for actix-web framework."
readme = "README.md"
keywords = ["actix"]
2020-01-30 18:08:20 +09:00
homepage = "https://github.com/actix/actix-extras"
repository = "https://github.com/actix/actix-extras.git"
2018-03-21 15:49:58 -07:00
license = "MIT/Apache-2.0"
2020-01-30 18:08:20 +09:00
exclude = [".cargo/config", "/examples/**"]
2018-03-13 22:13:21 +08:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
bytes = "0.5"
2020-01-02 03:40:29 +09:00
futures = "0.3.1"
derive_more = "0.99"
2018-03-13 22:13:21 +08:00
2020-01-02 03:40:29 +09:00
actix = "0.9"
actix-rt = "1"
actix-web = "2"
2018-03-13 22:13:21 +08:00
2020-01-15 11:48:34 -05:00
prost = "0.6.0"
2018-03-13 22:13:21 +08:00
[dev-dependencies]
2020-01-15 11:48:34 -05:00
prost-derive = "0.6.0"