conradkleinespel / rpassword

Cross platform Rust library to read a password in the terminal (Linux, BSD, OSX, Windows, WASM).
Apache License 2.0
244 stars 38 forks source link

please add mipsel dependencies to toml #8

Closed psych0d0g closed 8 years ago

psych0d0g commented 8 years ago

[target.mipsel-unknown-linux-gnu.dependencies] libc = "0.1" termios = "0.2" [target.mips-unknown-linux-gnu.dependencies] libc = "0.1" termios = "0.2"

conradkleinespel commented 8 years ago

Hello @psych0d0g,

Thanks for taking the time to write this.

Out of curiosity, what is mipsel ?

Best regards

psych0d0g commented 8 years ago

mipsel is mostly used for embedded multimedia platforms (enigma2 linux recivers, my LG tv is using it and similar devices) long endian variant of mips

conradkleinespel commented 8 years ago

@psych0d0g: Ah alright, cool ! Thanks for the explanation :smiley:

conradkleinespel commented 7 years ago

Hello @psych0d0g !

Had you ever tried actually using this on mipsel ? Does it work ?

The reason I'm asking is that I'm in the process of refactoring this library and I just realised that we had the wrong value of TCSANOW in the termios crate all this time.

termios-rs uses the Linux default of 0 instead of the actual mips value of 0x540e.