forked from WillSewell/pusher-http-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1020 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
[package]
name = "pusher"
version = "0.4.5"
authors = ["Jamie Patel <jamie@pusher.com>"]
description = "The Rust library for interacting with the Pusher HTTP API."
repository = "http://github.com/pusher/pusher-http-rust"
readme = "README.md"
license = "MIT"
keywords = ["realtime", "websockets", "pusher"]
categories = ["web-programming", "web-programming::http-client"]
edition = "2021"
[badges]
travis-ci = { repository = "pusher-community/pusher-http-rust", branch = "master" }
[lib]
name = "pusher"
path = "src/lib.rs"
[[example]]
name = "auth_server"
path = "examples/auth_server.rs"
[dependencies]
bytes = "1.2"
hex = "0.4"
hmac = "0.12"
hyper = { version = "0.14", features = ["client", "http1", "http2", "runtime", "server"] }
md-5 = "0.10"
regex = "1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
url = "2.3"
[dev-dependencies]
log = "0.4" # log macros are used within yup-hyper-mock
tokio = { version = "1.24", features = ["macros", "rt"] }
yup-hyper-mock = "6.0"