mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-10 13:33:35 +01:00
That will allow interaction between client and authentication attempts. It also shows how cumbersome it is to deal with all these generics ... but hey, you gotta do what you gotta do. If boxes of pointers would be used, it would be easier to handle, but enforces a certain memory model. That, of course, is not desired.
22 lines
500 B
TOML
22 lines
500 B
TOML
[package]
|
|
|
|
name = "youtube3-dev"
|
|
version = "0.0.1"
|
|
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
|
|
description = "A library to facilitate interacting with your youtube account"
|
|
repository = "https://github.com/Byron/youtube-rs"
|
|
license = "MIT"
|
|
keywords = ["youtube", "google", "protocol"]
|
|
|
|
[dependencies]
|
|
# Just to get hyper to work !
|
|
openssl = "= 0.4.3"
|
|
# Just to get hyper to work !
|
|
cookie = "= 0.1.13"
|
|
hyper = "*"
|
|
rustc-serialize = "*"
|
|
yup-oauth2 = "*"
|
|
|
|
[dev-dependencies]
|
|
yup-hyper-mock = "*"
|