mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-25 07:41:34 +00:00
Minor fix for concat_comma (#464)
This commit is contained in:
@ -70,6 +70,9 @@ macro_rules! concat_comma {
|
|||||||
($first:expr, $($rest:expr),*) => (
|
($first:expr, $($rest:expr),*) => (
|
||||||
concat!($first $(, ',', $rest)*)
|
concat!($first $(, ',', $rest)*)
|
||||||
);
|
);
|
||||||
|
($elem:expr) => (
|
||||||
|
$elem
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: there's no library in the Rust ecosystem that supports P-521, but the Go & JS
|
// TODO: there's no library in the Rust ecosystem that supports P-521, but the Go & JS
|
||||||
|
Reference in New Issue
Block a user