fix(rename): mv youtube-rs to google-apis-rs

This commit is contained in:
Sebastian Thiel
2015-03-02 12:05:42 +01:00
parent e3b6aee6d6
commit 11b6fe212f
5 changed files with 18 additions and 7 deletions

View File

@@ -1,12 +1,14 @@
# DO NOT PUBLISH
# This library is just to try out the code that should ultimately go into the code generator !
[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"
repository = "https://github.com/Byron/google-apis-rs"
license = "MIT"
keywords = ["youtube", "google", "protocol"]
keywords = ["youtube", "google", "protocol", "not-for-use"]
[dependencies]
# Just to get hyper to work !

View File

@@ -1,3 +1,11 @@
# TODO
* Adjust readme to reflect what this project actually is.
# Old youtube-specific readme
*The following is the previous youtube-specific writing, will have to think about how and if that should be integrated into the generated documentation.*
*Youtube* is a library written in Rust to help interacting with your youtube account.
For now, all functionality is geared towards allowing interruptible video uploads
and adjustments of video meta-data.

View File

@@ -19,10 +19,10 @@ api:
# output_dir: optional - not there if unset
cargo:
build_version: "0.0.1"
repo_base_url: https://github.com/Byron/youtube-rs
doc_base_url: http://byron.github.io/youtube-rs
repo_base_url: https://github.com/Byron/google-apis-rs
doc_base_url: http://byron.github.io/google-apis-rs
authors:
- Sebastian Thiel <byronimo@gmail>
keywords: [google, protocol, web, api]
# All APIs should live in the same repository
repository_url: https://github.com/Byron/youtube-rs
repository_url: https://github.com/Byron/google-apis-rs

View File

@@ -1,12 +1,13 @@
<%! import util %>\
# DO NOT EDIT !
# This file was generated automatically by '${self.uri}'
# DO NOT EDIT !
[package]
name = "${name}${version[1:]}"
name = "${name}${util.to_api_version(version)}"
version = "${cargo.build_version}"
authors = [${",\n ".join('"%s"' % a for a in cargo.authors)}]
description = "A library to interact with ${canonicalName} (protocol ${version})"
description = "A complete library to interact with ${canonicalName} (protocol ${version})"
repository = "${cargo.repo_base_url}/${OUTPUT_DIR}"
homepage = "${documentationLink}"
documentation = "${cargo.doc_base_url}"