forked from expo/expo-server-sdk-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 962 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
[package]
name = "expo-server-sdk"
version = "0.1.0"
authors = ["quin <[email protected]>"]
description = "Server side library for working with Expo using Rust. Includes a client to send push notifications to users of your mobile app using the Expo push notification services."
homepage = "https://docs.expo.io"
license = "MIT"
readme = "README.md"
keywords = ["expo", "push", "notifications", "react", "native"]
categories = ["api-bindings", "web-programming"]
documentation = "https://docs.expo.io/versions/latest/guides/push-notifications"
repository = "https://github.com/expo/expo-server-sdk-rust"
[lib]
name = "expo_server_sdk"
path = "src/lib.rs"
[[bin]]
name = "expo-server"
path = "src/main.rs"
doc = false
[dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde_json = "1"
serde_derive = "1"
serde = "1"
failure = "0.1"
failure_derive = "0.1"
flate2 = "1.0"
clap = { version = "2.31", features = ["yaml"] }
structopt = "0.2"