forked from Igosuki/signalr-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (40 loc) · 1.01 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
[package]
name = "signalr_rs"
version = "0.1.3"
authors = ["Guillaume Balaine <igosuki@gmail.com>"]
edition = "2018"
description = "SignalR client based on actix web client and async await"
keywords = [ "signalr", "actix" ]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/Igosuki/signalr-rs"
repository = "https://github.com/Igosuki/signalr-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "bittrex_signalr"
path = "examples/bittrex.rs.rs"
[dependencies]
awc = "1.0.1"
actix-web = { version ="2.0.0", features = ["openssl"] }
actix = "0.9.0"
serde_json = "1.0.0"
serde = "1.0.104"
serde_derive = "1.0.104"
failure = "0.1.6"
url = "2.1.0"
actix-codec = "0.2.0"
futures = "0.3.1"
openssl = "0.10.26"
bytes = "0.5.3"
actix-http = "1.0.1"
derive_more = "0.99.2"
base64 = "0.11.0"
libflate = "0.1"
log = "0.4.8"
env_logger = "0.7.1"
regex = "1.3.3"
lazy_static = "1.4.0"
backoff = "0.1.5"
[dev-dependencies]
actix-rt = "1.0.0"
tokio = "0.2.9"