-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 1.21 KB
/
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
[package]
name = "firebae-cm"
version = "0.4.2"
edition = "2021"
authors = ["Thomas Veldman <[email protected]>"]
description = "A Firebase Cloud Messaging Http V1 implementation"
license = "MIT"
homepage = "https://github.com/Vesafary/firebae-cm"
repository = "https://github.com/Vesafary/firebae-cm"
keywords = ["web", "firebase"]
categories = ["Web programming", "API bindings"]
[dependencies]
firebae-derive = { version = "0.1.0" }
serde = { version = "1.0.158", features = ["derive"] }
serde_json = { version = "1.0.94" }
reqwest = { version = "0.11.15", features = ["json", "rustls-tls"], default-features = false }
time = { version = "0.3.20", features = ["formatting"] }
log = { version = "0.4.17" }
thiserror = { version = "1.0.40" }
gcp_auth = { version = "0.7.5", optional = true }
tokio = { version = "1.26.0", features = ["sync", "parking_lot"], default-features = false, optional = true }
[features]
oauth = ["dep:gcp_auth", "dep:tokio"]
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]