-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 782 Bytes
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
[package]
name = "bullet_stream"
version = "0.11.0"
edition = "2021"
license = "MIT"
description = "Bulletproof printing for bullet point text"
keywords = ["script", "buildpack", "output", "printing", "ansi"]
repository = "https://github.com/schneems/bullet_stream"
documentation = "https://docs.rs/bullet_stream"
readme = "README.md"
include = ["src/**/*", "LICENSE", "README.md"]
rust-version = "1.86"
[dependencies]
fun_run = { version = ">=0.5,<1", optional = true }
[dev-dependencies]
indoc = "2.0.7"
tempfile = "3.24.0"
libcnb-test = "0.30.2"
ascii_table = { version = "5.0.0", features = ["color_codes"] }
pretty_assertions = "1.4"
[features]
# Allow stateless printing
global_functions = []
# Enable global_functions by default
default = ["global_functions", "fun_run"]