Files
google-apis-rs/Cargo.toml
Sebastian Thiel 475163ec29 feat(mako): now sets up entire project structure
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.
2015-03-02 16:50:22 +01:00

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 = "*"