Code Monkey home page Code Monkey logo

gauth-rs's People

Contributors

adnanjpg avatar makarski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

gauth-rs's Issues

Add tests in lib.rs

fn cache_token_filekey_err() {}
fn cache_token_dir_err() {}
fn cache_token_token_path_err() {}
fn cache_token_file_create_err() {}
fn cache_token_write_json_err() {}

usage with tokio panics

when using this package with tokio runtime and calling gauth::serv_account::ServiceAccount::from_file, I have the following error: thread 'main' panicked at 'Cannot drop a runtime in a context where blocking is not allowed. This happens when a runtime is dropped from within an asynchronous context.',

Steps to reproduce

  1. create a new rust app using cargo init gauth-bug
  2. add the package dependency using cargo add gauth
  3. copy the test file service-account-key.json from the package's files and put it in the root of the new rust app
  4. call from_file like the following:
gauth::serv_account::ServiceAccount::from_file(
    "service-account-key.json",
    vec!["https://www.googleapis.com/auth/firebase.messaging"],
);
  1. when running the application this way, it will work without any trouble
  2. now, let's add tokio runtime. firstly, add the tokio package using cargo add tokio
  3. replace the main function with the following:
#[tokio::main]
async fn main() {
    gauth::serv_account::ServiceAccount::from_file(
        "service-account-key.json",
        vec!["https://www.googleapis.com/auth/firebase.messaging"],
    );
}
  1. when running the application this was, it will panic with the error message I've provided above

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.