mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
2a6a36af23
* build(deps): update prost requirement from 0.12 to 0.13 Updates the requirements on [prost](https://github.com/tokio-rs/prost) to permit the latest version. - [Release notes](https://github.com/tokio-rs/prost/releases) - [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/prost/compare/v0.12.0...v0.13.1) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * docs: update changelog * chore(actix-protobuf): prepare release 0.11.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Ede <robjtede@icloud.com>
32 lines
925 B
TOML
32 lines
925 B
TOML
[package]
|
|
name = "actix-protobuf"
|
|
version = "0.11.0"
|
|
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"]
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4", default-features = false }
|
|
derive_more = "0.99.7"
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
prost = { version = "0.13", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
actix-web = { version = "4", default-features = false, features = ["macros"] }
|
|
prost = { version = "0.13", default-features = false, features = ["prost-derive"] }
|
|
|
|
[lints]
|
|
workspace = true
|