cargo-asm
                                
                                
                                
                                    cargo-asm copied to clipboard
                            
                            
                            
                        Terminal colorization not properly ended
On this function:
pub fn copy(src: &[u8], dst: &mut [u8]) {
    assert!(src.len() == dst.len());
    for i in 0..src.len() {
        dst[i] = src[i];
    }
}
I get output that looks like this in Terminal.app on Mac. In particular, note that cargo asm didn't properly reset the terminal color after setting it to red on the last line.

Thanks for the report! I'll look into this, shouldn't be hard to fix.
np!