mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-01 09:03:39 +01:00
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.
25 lines
624 B
TOML
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 = "*"
|