[package] name = "storyteller" version = "1.0.0" edition = "2021" authors = ["Martijn Gribnau "] description = "Library focused on supporting user oriented output while supporting multiple output types (e.g. json, a progressbar, etc.)" license = "Apache-2.0 OR MIT" repository = "https://github.com/foresterre/storyteller" exclude = ["/.github", "docs/sketches/*.png"] rust-version = "1.60" [features] default = ["channel_reporter"] channel_reporter = ["crossbeam-channel"] [dependencies.crossbeam-channel] version = "0.5" optional = true [dev-dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" indicatif = "0.17.5" # parameterized tests yare = "3.0.0" # --- Examples [[example]] name = "json" required-features = ["channel_reporter"] [[example]] name = "minimal" required-features = ["channel_reporter"] # --- Integration tests [[test]] name = "collecting_handler" required-features = ["channel_reporter"] [[test]] name = "multi_handler" required-features = ["channel_reporter"] [[test]] name = "registering_handler" required-features = ["channel_reporter"]