Files
google-apis-rs/Cargo.toml
Sebastian Thiel 020300af15 feat(type-params): ground work for upload media
This might mean we need additional type parameters, but I will see how
it's going to work out.

In theory, we could define a new trait for Seek+Read, but this would
mean that we couldn't contain owned streams.

For max flexibility, it's better to have additional type parameters
and use BorrowMut to allow ownership, and borrow.
2015-03-08 09:09:18 +01:00

25 lines
624 B
TOML

# DO NOT PUBLISH
# This library is just to try out the code that should ultimately go into the code generator !
[package]
name = "cmn"
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/google-apis-rs"
license = "MIT"
keywords = ["youtube", "google", "protocol", "not-for-use"]
[lib]
# The common code, used by all generated implementations
name = "cmn"
path = "src/rust/lib.rs"
[dependencies]
hyper = "*"
rustc-serialize = "*"
yup-oauth2 = "*"
[dev-dependencies]
yup-hyper-mock = "*"