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

30 lines
749 B
TOML
Raw Normal View History

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"
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]
actix-web = { version = "3.0.0", default_features = false }
actix-rt = "1.1.1"
bytes = "0.5"
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"