[package] name = "fars" version = "0.2.0" edition = "2021" authors = ["Mochineko "] rust-version = "1.75" license = "MIT OR Apache-2.0" readme = "README.md" description = "An unofficial Rust client for the Firebase Auth REST API." repository = "https://github.com/mochi-neko/fars" categories = ["api-bindings", "authentication"] keywords = ["firebase", "auth", "rest", "api", "client"] [lib] path = "src/lib.rs" [features] default = [] verify = ["jsonwebtoken"] custom_client = [] full = ["custom_client", "verify"] [dependencies] reqwest = { version = "^0.11", features = ["json"] } serde = { version = "^1.0", features = ["derive"] } serde_json = "^1.0" thiserror = "^1.0" jsonwebtoken = { version = "^9.2", optional = true } [dev-dependencies] anyhow = "1.0.78" clap = { version = "4.4.12", features = ["derive"] } tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }