mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-31 08:33:44 +01:00
That way, we have a common library to pull in from the main repository, and a space for testing new code (in a partial implementation). Next there will be generated object structures.
29 lines
724 B
TOML
29 lines
724 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]
|
|
# 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 = "*"
|