aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-semver/src/constraint/bound.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-16 23:43:37 +0900
committernsfisis <nsfisis@gmail.com>2026-05-16 23:43:37 +0900
commit9faf73a18ed1ee8a1c9c20c5adb723791dc7dfdf (patch)
treeb259c66b7bb217330c43369e70e0eca89893c77a /crates/shirabe-semver/src/constraint/bound.rs
parentbeecbec6becfaaabcffd5bd9c596c055e64778c1 (diff)
downloadphp-shirabe-9faf73a18ed1ee8a1c9c20c5adb723791dc7dfdf.tar.gz
php-shirabe-9faf73a18ed1ee8a1c9c20c5adb723791dc7dfdf.tar.zst
php-shirabe-9faf73a18ed1ee8a1c9c20c5adb723791dc7dfdf.zip
feat(port): add as_any/is_disjunctive to ConstraintInterface (needed for MultiConstraint)
Diffstat (limited to 'crates/shirabe-semver/src/constraint/bound.rs')
-rw-r--r--crates/shirabe-semver/src/constraint/bound.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe-semver/src/constraint/bound.rs b/crates/shirabe-semver/src/constraint/bound.rs
index 1a63fc3..8e45023 100644
--- a/crates/shirabe-semver/src/constraint/bound.rs
+++ b/crates/shirabe-semver/src/constraint/bound.rs
@@ -4,7 +4,7 @@ use anyhow::bail;
use shirabe_php_shim as php;
-#[derive(Debug, PartialEq)]
+#[derive(Debug, Clone, PartialEq)]
pub struct Bound {
version: String,
is_inclusive: bool,