mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-21 02:37:05 +01:00
feat(youtube): first generated result ...
... just to keep track on how it changes over time.
This commit is contained in:
25
gen/youtube3/LICENSE.md
Normal file
25
gen/youtube3/LICENSE.md
Normal file
@@ -0,0 +1,25 @@
|
||||
The MIT License (MIT)
|
||||
=====================
|
||||
|
||||
Copyright © `2015` `Sebastian Thiel`
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the “Software”), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
11
gen/youtube3/README.md
Normal file
11
gen/youtube3/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
The `youtube3` library allows access to all features of *YouTube*.
|
||||
|
||||
TODO: Library level fully fledged documentation, incuding **summary** and **usage**.
|
||||
And another line, for testing
|
||||
|
||||
# License
|
||||
The **youtube3** library was generated by Sebastian Thiel, and is placed
|
||||
under the *MIT* license.
|
||||
You can read the full text at the repository's [license file][repo-license].
|
||||
|
||||
[repo-license]: https://github.com/Byron/google-apis-rsLICENSE.md
|
||||
29
gen/youtube3/cargo.toml
Normal file
29
gen/youtube3/cargo.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
# DO NOT EDIT !
|
||||
# This file was generated automatically by 'src/mako/cargo.toml.mako'
|
||||
# DO NOT EDIT !
|
||||
[package]
|
||||
|
||||
name = "youtube3"
|
||||
version = "0.0.1"
|
||||
authors = ["Sebastian Thiel <byronimo@gmail>"]
|
||||
description = "A complete library to interact with YouTube (protocol v3)"
|
||||
repository = "https://github.com/Byron/google-apis-rs/gen/youtube3"
|
||||
homepage = "https://developers.google.com/youtube/v3"
|
||||
documentation = "http://byron.github.io/google-apis-rs"
|
||||
license = "MIT"
|
||||
keywords = ["youtube", "google", "protocol", "web", "api"]
|
||||
|
||||
[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 = "*"
|
||||
|
||||
[dependencies.cmn]
|
||||
path = "../.."
|
||||
|
||||
[dev-dependencies]
|
||||
yup-hyper-mock = "*"
|
||||
2021
gen/youtube3/src/lib.rs
Normal file
2021
gen/youtube3/src/lib.rs
Normal file
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,6 @@ extern crate cmn;
|
||||
extern crate "rustc-serialize" as rustc_serialize;
|
||||
extern crate "yup-oauth2" as oauth2;
|
||||
|
||||
use std::default::Default;
|
||||
use std::collections::HashMap;
|
||||
|
||||
## SCHEMAS - normal ones
|
||||
|
||||
Reference in New Issue
Block a user