├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── pam-any.iml └── vcs.xml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── pam-any ├── src ├── lib.rs ├── mode.rs ├── pam_any_conversation.rs ├── un_hide_input.rs └── unsafe_send.rs └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pam-any.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/.idea/pam-any.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/README.md -------------------------------------------------------------------------------- /pam-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/pam-any -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/src/mode.rs -------------------------------------------------------------------------------- /src/pam_any_conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/src/pam_any_conversation.rs -------------------------------------------------------------------------------- /src/un_hide_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/src/un_hide_input.rs -------------------------------------------------------------------------------- /src/unsafe_send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/src/unsafe_send.rs -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocolateLoverRaj/pam-any/HEAD/test.sh --------------------------------------------------------------------------------