mirror of
https://github.com/fafhrd91/actix-net
synced 2025-04-22 02:16:50 +02:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.44.1 to 1.44.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.44.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "actix-codec"
|
|
version = "0.5.2"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
|
|
description = "Codec utilities for working with framed protocols"
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
repository = "https://github.com/actix/actix-net"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.cargo_check_external_types]
|
|
allowed_external_types = ["bytes::*", "futures_core::*", "futures_sink::*", "tokio::*", "tokio_util::*"]
|
|
|
|
[dependencies]
|
|
bitflags = "2"
|
|
bytes = "1"
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
futures-sink = { version = "0.3.7", default-features = false }
|
|
memchr = "2.3"
|
|
pin-project-lite = "0.2"
|
|
tokio = "1.44.2"
|
|
tokio-util = { version = "0.7", features = ["codec", "io"] }
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
tokio-test = "0.4.2"
|
|
|
|
[[bench]]
|
|
name = "lines"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|