oauth_fcm 0.2.0

A library for sending both data and notification Firebase Cloud Messaging (FCM) messages
Documentation
[dependencies.jsonwebtoken]
version = "8.0"

[dependencies.reqwest]
features = ["json"]
version = "0.11"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.0"

[dependencies.tracing]
version = "0.1.40"

[dev-dependencies.axum]
version = "0.7.5"

[dev-dependencies.mockito]
version = "1.4.0"

[dev-dependencies.rocket]
version = "0.5.0"

[dev-dependencies.tokio-test]
version = "0.4.4"

[dev-dependencies.tracing-subscriber]
version = "0.3.18"

[[example]]
name = "axum_example"
path = "examples/axum_example.rs"

[[example]]
name = "rocket_example"
path = "examples/rocket_example.rs"

[lib]
name = "oauth_fcm"
path = "src/lib.rs"

[package]
authors = ["Yannick Wegel <dev@pizzaboi.de>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["web-programming", "authentication"]
description = "A library for sending both data and notification Firebase Cloud Messaging (FCM) messages"
documentation = "https://docs.rs/oauth_fcm"
edition = "2021"
exclude = [".github/*"]
keywords = ["fcm", "firebase", "push", "notification", "oauth"]
license = "MIT"
name = "oauth_fcm"
readme = "README.md"
repository = "https://github.com/ywegel/oauth_fcm"
version = "0.2.0"

[[test]]
name = "fcm_request_error"
path = "tests/fcm_request_error.rs"

[[test]]
name = "fcm_server_error"
path = "tests/fcm_server_error.rs"

[[test]]
name = "oauth_error"
path = "tests/oauth_error.rs"

[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"

[[test]]
name = "valid_fcm_tests"
path = "tests/valid_fcm_tests.rs"