-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (39 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "storyteller"
version = "1.0.0"
edition = "2021"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
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"]