feat: implement convert command

This commit is contained in:
rvcas
2023-03-03 00:13:35 -05:00
committed by Lucas
parent 812ffb30f0
commit e2dc4ec6c8
2 changed files with 91 additions and 2 deletions

View File

@@ -41,3 +41,7 @@ pub enum Error {
keyword_spend = "spend".if_supports_color(Stdout, |s| s.purple())))]
ParameterizedValidator { n: usize },
}
unsafe impl Send for Error {}
unsafe impl Sync for Error {}