[package]
edition = "2024"
rust-version = "1.95.0"
name = "continue"
version = "0.1.4"
authors = ["Drew Crawford <drew@sealedabstract.com>"]
build = false
exclude = [".*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Swift-style continuation API"
homepage = "https://sealedabstract.com/code/continue"
readme = "README.md"
keywords = [
"continuation",
"async",
"await",
"futures",
"task",
]
categories = [
"asynchronous",
"concurrency",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drewcrawford/continue"
[features]
default = []
exfiltrate = [
"dep:exfiltrate",
"dep:wasm_lite_std",
]
logwise-forensic = []
[lib]
name = "continue"
path = "src/lib.rs"
[[test]]
name = "hung_sender"
path = "tests/hung_sender.rs"
[[test]]
name = "logwise_context"
path = "tests/logwise_context.rs"
[[test]]
name = "logwise_no_runtime"
path = "tests/logwise_no_runtime.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
required-features = ["exfiltrate"]
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[dependencies.atomic-waker]
version = "1.1.2"
[dependencies.exfiltrate]
version = "0.4.0"
optional = true
[dependencies.logwise]
version = "0.7.0"
[dependencies.wasm_lite_std]
version = "0.1.4"
optional = true
[dev-dependencies.exfiltrate_internal]
version = "0.4.0"
[dev-dependencies.rmp-serde]
version = "1.3.1"
[dev-dependencies.wasm_lite]
version = "0.1.4"
[dev-dependencies.wasm_lite_std]
version = "0.1.4"
[target.'cfg(target_arch="wasm32")'.dev-dependencies.wasm_lite]
version = "0.1.0"
[target.'cfg(target_arch="wasm32")'.dev-dependencies.wasm_lite_std]
version = "0.1.0"