-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (37 loc) · 1023 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "oauth_fcm"
version = "0.3.0"
edition = "2021"
authors = ["Yannick Wegel <[email protected]>"]
description = "A library for sending both data and notification Firebase Cloud Messaging (FCM) messages"
license = "MIT"
repository = "https://github.com/ywegel/oauth_fcm"
documentation = "https://docs.rs/oauth_fcm"
readme = "README.md"
keywords = ["fcm", "firebase", "push", "notification", "oauth"]
categories = ["web-programming", "authentication"]
exclude = [
".github/*"
]
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
jsonwebtoken = "8.0"
thiserror = "1.0"
tracing = "0.1.40"
[dev-dependencies]
# Testing
mockito = "1.4.0"
tracing-subscriber = "0.3.18"
tokio-test = "0.4.4"
# Examples
axum = "0.7.5"
rocket = "0.5.0"
[[example]]
name = "axum_example"
path = "examples/axum_example.rs"
[[example]]
name = "rocket_example"
path = "examples/rocket_example.rs"