hangups-rs

Rust version of hangups (WIP) Currently Login not possible
git clone git://archive.git.mtrnord.blog/Nordgedanken/hangups-rs.git
Log | Files | Refs | README | LICENSE

commit e5bc197f5d8b892ded0fd64e0346642f4ffa4bc1
parent 9c232232370a4a55b83dd5b4ef1d8a5c447635f8
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed, 12 Apr 2017 10:50:50 +0200

add rust basics

Diffstat:
M.gitignore | 3+++
ACargo.toml | 6++++++
Asrc/lib.rs | 6++++++
3 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -5,3 +5,6 @@ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock Cargo.lock +target/ +**/*.rs.bk +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "hangups" +version = "0.1.0" +authors = ["marce"] + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs @@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}