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

Cargo.toml (995B)


      1 [package]
      2 name = "hangups"
      3 version = "0.0.1"
      4 authors = ["MTRNord"]
      5 publish = false # Not ready yet!
      6 exclude = ["src/hangups/proto/hangouts.proto"] # don't include the originial proto
      7 keywords = ["hangups", "hangouts", "google"]
      8 categories = ["api-bindings"]
      9 license = "MIT"
     10 
     11 [dependencies]
     12 hyper = { git = "https://github.com/hyperium/hyper" }
     13 protobuf = "1.2.2"
     14 rand = "0.3"
     15 sha1 = "0.2.0"
     16 rustc-serialize = "0.3.23"
     17 jconfig = "0.1.0"
     18 regex = "0.2"
     19 url = "1.4.0"
     20 tokio-core = "0.1.6"
     21 futures = "0.1.13"
     22 hyper-tls = { git = "https://github.com/hyperium/hyper-tls" }
     23 
     24 [badges]
     25 # Travis CI: `repository` is required. `branch` is optional; default is `master`
     26 travis-ci = { repository = "Nordgedanken/hangups-rs", branch = "master" }
     27 # Appveyor: `repository` is required. `branch` is optional; default is `master`
     28 # `service` is optional; valid values are `github` (default), `bitbucket`, and
     29 # `gitlab`.
     30 appveyor = { repository = "Nordgedanken/hangups-rs", branch = "master", service = "github" }