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:
@@ -286,9 +286,9 @@ macro_rules! oid {
|
|||||||
let mut res = Vec::new();
|
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)
|
||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user