Merge pull request #25 from randombit/jack/add-crate

Add $crate:: metavariable to the oid! macro
This commit was merged in pull request #25.
This commit is contained in:
2021-06-24 19:30:56 -07:00
committed by GitHub

View File

@@ -286,9 +286,9 @@ macro_rules! oid {
let mut res = Vec::new();
$(
res.push(BigUint::from($e as u64));
res.push($crate::BigUint::from($e as u64));
)*
OID::new(res)
$crate::OID::new(res)
}};
}