summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 2348af0a3b2b3c1b6659ac8a790746b2379fb716 (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.1"
edition = "2024"

[dependencies.strip-ansi-escapes]
version = "0.2.1"
optional = true

[features]
default = []
all = [ "strip-ansi" ]
strip-ansi = ["dep:strip-ansi-escapes"]