blob: 01a49d1903c248a31fc59a815abd98198cca2f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "just_fmt"
authors = ["Weicao-CatilGrass"]
description = "Just a crate for formatting some things"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/catilgrass/just_fmt"
version = "0.1.2"
edition = "2024"
[dependencies.strip-ansi-escapes]
version = "0.2.1"
optional = true
[features]
default = []
all = [ "strip-ansi" ]
strip-ansi = ["dep:strip-ansi-escapes"]
|