From 8937e096a4b7eba649817d12d23d3e369a4a4f1d Mon Sep 17 00:00:00 2001 From: John Turner Date: Wed, 29 Oct 2025 16:24:25 +0000 Subject: create ebuild module --- tests/depend.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/depend.rs b/tests/depend.rs index 02c59f2..3738854 100644 --- a/tests/depend.rs +++ b/tests/depend.rs @@ -1,8 +1,4 @@ -use gentoo_utils::{ - Parseable, - atom::Atom, - depend::{self, Expr}, -}; +use gentoo_utils::{Parseable, atom::Atom, ebuild::Depend}; use mon::{Parser, eof, input::InputIter, tag, whitespace1}; use std::fs; @@ -18,7 +14,7 @@ fn parse_md5_cache() { if line.starts_with("DEPEND=") { eprintln!("{line}"); eprintln!(); - Expr::::parser() + Depend::::parser() .separated_list(whitespace1(), 0..) .ignore() .or(eof()) -- cgit v1.2.3