pingora-runtime 0.9.0

Multithreaded Tokio runtime with the option of disabling work stealing.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "pingora-runtime"
version = "0.9.0"
authors = ["Yuchen Wu <yuchen@cloudflare.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Multithreaded Tokio runtime with the option of disabling work stealing.
"""
readme = false
keywords = [
    "async",
    "non-blocking",
    "pingora",
]
categories = [
    "asynchronous",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/cloudflare/pingora"

[features]
default = []
dial9 = ["dep:dial9-tokio-telemetry"]
dial9-cpu-profiling = [
    "dial9",
    "dial9-tokio-telemetry/cpu-profiling",
]
dial9-worker-s3 = [
    "dial9",
    "dep:aws-sdk-s3",
    "dial9-tokio-telemetry/worker-s3",
]

[lib]
name = "pingora_runtime"
path = "src/lib.rs"

[[bench]]
name = "hello"
path = "benches/hello.rs"
harness = false

[dependencies.aws-sdk-s3]
version = "1"
optional = true

[dependencies.dial9-tokio-telemetry]
version = "0.3"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.once_cell]
version = "1"

[dependencies.rand]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.thread_local]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "time",
]

[dev-dependencies.tokio]
version = "1"
features = [
    "io-util",
    "net",
]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tokio_unstable)"]