Skip to content

Commit 183e6f9

Browse files
committed
swap to regex-lite
1 parent c029140 commit 183e6f9

File tree

3 files changed

+6
-38
lines changed

3 files changed

+6
-38
lines changed

Cargo.lock

Lines changed: 4 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "A small helper for running `docker-compose.yaml` files"
1111

1212
[dependencies]
1313
anyhow = "1.0.70"
14-
regex = "1.7.0"
14+
regex-lite = "0.1.5"
1515
serde_yaml = "0.9.21"
1616
subprocess = "0.2.9"
1717
tracing = "0.1.37"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use anyhow::{anyhow, Result};
2-
use regex::Regex;
2+
use regex_lite::Regex;
33
use serde_yaml::Value;
44
use std::collections::HashMap;
55
use std::fmt::Write;

0 commit comments

Comments
 (0)