[package]
edition = "2024"
name = "recoverable-spawn"
version = "3.9.17"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thread that supports automatic recovery from panics, allowing threads to restart after a panic. Useful for resilient and fault-tolerant concurrency in network and web programming."
readme = "README.md"
keywords = [
"time",
"hyperlane",
"day",
"format",
"lang",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/crates-dev/recoverable-spawn.git"
[lib]
name = "recoverable_spawn"
path = "src/lib.rs"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"