support "=" version operator

This commit is contained in:
John Turner
2025-10-25 01:19:35 -04:00
parent 66d6e52b21
commit 680ead0504
2 changed files with 9 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ pub enum Blocker {
pub enum VersionOperator {
Lt,
Gt,
Eq,
LtEq,
GtEq,
Roughly,