-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (41 loc) · 1.28 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "firebase-messaging-rs"
version = "0.8.10"
authors = [
"Yoichiro ITO <[email protected]>"
]
rust-version = "1.63"
description = "An API to talk to FCM (Firebase Cloud Messaging) in Rust"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/i10416/firebase-messaging-rs"
repository = "https://github.com/i10416/firebase-messaging-rs"
documentation = "https://docs.rs/firebase-messaging-rs/"
keywords = ["fcm", "firebase", "notification"]
edition = "2021"
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["topic-management", "native-tls"]
fcm = []
topic-management = []
native-tls = ["hyper-tls"]
rustls = ["hyper-rustls"]
vendored-tls = ["hyper-tls/vendored"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
chrono = "0.4"
log = "0.4"
gcloud-sdk = { version = "0.25", features = ["rest"] }
hyper = { version = "0.14", features = ["client", "http1"] }
hyper-tls = { version = "0.5", optional = true }
hyper-rustls = { version = "0.25", optional = true, features = ["rustls-native-certs"] }
http = "0.2"
async-trait = "0.1"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3