mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
1e682e7a59
* updated to prost 0.11 and added application/x-protobuf * updated derive-more, prost, futures-util versions * updated Changelog and a small fix in Cargo.toml * cargo fmt * bumped version to 0.8.1 * removed version bump * add back intentional patch versions Co-authored-by: Ahmed Masud <ahmed.masud@saf.ai>
28 lines
845 B
TOML
28 lines
845 B
TOML
[package]
|
|
name = "actix-protobuf"
|
|
version = "0.8.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"kingxsp <jin.hb.zh@outlook.com>",
|
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
|
]
|
|
description = "Protobuf payload extractor for Actix Web"
|
|
keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-extras.git"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "actix_protobuf"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4", default_features = false }
|
|
derive_more = "0.99.5"
|
|
futures-util = { version = "0.3.7", default-features = false }
|
|
prost = { version = "0.11", default_features = false }
|
|
|
|
[dev-dependencies]
|
|
actix-web = { version = "4", default_features = false, features = ["macros"] }
|
|
prost = { version = "0.11", default_features = false, features = ["prost-derive"] }
|