summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 9 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5fea8e4..2348af0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,8 +7,14 @@ readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/catilgrass/just_fmt"
-version = "0.1.0"
+version = "0.1.1"
edition = "2024"
-[dependencies]
-strip-ansi-escapes = "0.2.1"
+[dependencies.strip-ansi-escapes]
+version = "0.2.1"
+optional = true
+
+[features]
+default = []
+all = [ "strip-ansi" ]
+strip-ansi = ["dep:strip-ansi-escapes"]