radix-clis 1.4.0

A collection of CLIs for developing, building and testing Scrypto code, from the Radix DLT project.
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::result_large_err)]

#[cfg(windows)]
use colored::*;
use radix_clis::scrypto_bindgen;

pub fn main() -> Result<(), scrypto_bindgen::Error> {
    #[cfg(windows)]
    control::set_virtual_terminal(true).unwrap();
    scrypto_bindgen::run()
}