diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-10-26 01:23:12 -0400 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-10-26 01:23:12 -0400 |
| commit | 71379a900b8baab58a8c4f1b7a35bf44bd5b7d5f (patch) | |
| tree | d4acb70061bde87ae7d14d0539149f4f20d2b785 | |
| parent | 9fee710a03b8759c9d3175e2f77505a5925e0988 (diff) | |
| download | gentoo-utils-71379a900b8baab58a8c4f1b7a35bf44bd5b7d5f.tar.gz | |
update Cargo.lock
| -rw-r--r-- | Cargo.lock | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -3,6 +3,15 @@ version = 4 [[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] name = "either" version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -36,8 +45,17 @@ dependencies = [ ] [[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + +[[package]] name = "mon" version = "0.1.0" +dependencies = [ + "regex", +] [[package]] name = "proc-macro2" @@ -58,6 +76,35 @@ dependencies = [ ] [[package]] +name = "regex" +version = "1.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + +[[package]] name = "syn" version = "2.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" |
