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

34 lines
787 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
version = "0.5.0"
2020-01-01 17:04:00 +01:00
edition = "2018"
2020-01-01 19:40:29 +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"]
homepage = "https://github.com/actix/actix-protobuf"
license = "MIT/Apache-2.0"
2020-01-30 01:31:25 +01:00
exclude = [".travis.yml", ".cargo/config", "/examples/**"]
2018-03-21 23:49:58 +01:00
[badges]
travis-ci = { repository = "actix/actix-protobuf", branch = "master" }
codecov = { repository = "actix/actix-protobuf", branch = "master", service = "github" }
2018-03-13 15:13:21 +01:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
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"