[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-callbacks"
version = "0.2.5"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Callback handlers: RecordingCallback, TracingCallback, CompositeCallback"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_callbacks"
path = "src/lib.rs"
[[test]]
name = "callbacks_extended"
path = "tests/callbacks_extended.rs"
[[test]]
name = "composite"
path = "tests/composite.rs"
[[test]]
name = "recording"
path = "tests/recording.rs"
[[test]]
name = "stdout"
path = "tests/stdout.rs"
[[test]]
name = "tracing_cb"
path = "tests/tracing_cb.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dependencies.tracing]
version = "0.1"