forked from Byron/google-apis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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 <[email protected]>"]
description = "A library to facilitate interacting with your youtube account"
repository = "https://github.com/Byron/google-apis-rs"
license = "MIT/Apache-2.0"
keywords = ["youtube", "google", "protocol", "not-for-use"]
[lib]
# The common code, used by all generated implementations
name = "cmn"
path = "src/rust/lib.rs"
[dependencies]
clap = "*"
hyper = "*"
mime = "*"
rustc-serialize = "*"
yup-oauth2 = { version = "*", features = ["nightly"], default-features = false }
serde = "*"
serde_json = "*"
serde_macros = "*"
strsim = "*"
[dev-dependencies]
yup-hyper-mock = "*"