Skip to content

Commit

Permalink
fix(example): Use crates.io version of google-pubsub1 for examples
Browse files Browse the repository at this point in the history
This was a local change that leaked into a commit.
  • Loading branch information
dermesser committed Sep 28, 2016
1 parent cdc5fc4 commit 80b21bd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions examples/service_account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ authors = ["Lewin Bormann <[email protected]>"]

[dependencies]
base64 = "0.2"
yup-oauth2 = "0.6.4"
google-pubsub1 = { version = "0.1", path = "../../../google-apis-rs/gen/pubsub1" }
# We can't just use the local version (../../), as google-pubsub1 will have a different
# version of yup-oauth2, leading to type errors. For testing changes locally, download
# github.com/Byron/google-apis-rs, and use the local yup-oauth2 crate in the google-pubsub1
# crate as well as here.
yup-oauth2 = "0.6"
google-pubsub1 = "0.1"
hyper = "0.9"

0 comments on commit 80b21bd

Please sign in to comment.