mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-29 07:40:07 +01:00
I've switched to a new M1 laptop which couldn't build the old dependencies because the old ring library version doesn't compile on mac arm (but new version do). There's no way to update ring in isolation, so I've got to update the whole tree at once.
31 lines
775 B
TOML
31 lines
775 B
TOML
# DO NOT PUBLISH
|
|
# This library is just to try out the code that should ultimately go into the code generator !
|
|
[package]
|
|
|
|
name = "client"
|
|
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/Apache-2.0"
|
|
keywords = ["youtube", "google", "protocol", "not-for-use"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
# The common client code, used by all generated implementations
|
|
name = "client"
|
|
path = "src/rust/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = "2"
|
|
hyper = "0.14"
|
|
mime = "0.2"
|
|
rustc-serialize = "*"
|
|
yup-oauth2 = "^ 5.0"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
serde_derive = "1"
|
|
strsim = "*"
|
|
tokio = "^ 1.0"
|
|
hyper-rustls = "^0.22"
|
|
itertools = "^ 0.10" |