-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(service): added authenticator arg
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.
- Loading branch information
Showing
4 changed files
with
55 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
target | ||
Cargo.lock | ||
*.sublime-workspace | ||
*.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
|
||
name = "youtube3" | ||
name = "youtube3-dev" | ||
version = "0.0.1" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
description = "A library to facilitate interacting with your youtube account" | ||
|
@@ -9,10 +9,13 @@ 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 = "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters