-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
45 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
[package]
name = "signalr_rs"
version = "0.2.6"
authors = ["Guillaume Balaine <[email protected]>"]
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"
[features]
default = ["zstd"]
zstd = ["actix-web/compress-zstd", "awc/compress-zstd"]
no_trace_release = ["log/release_max_level_debug"]
[dependencies]
actix-web = { version = "4.0.1", features = ["openssl", "compress-brotli", "compress-gzip", "cookies"], default-features = false }
awc = { version = "3.0.0", features = ["openssl", "compress-brotli", "compress-gzip", "cookies"], default-features = false }
actix = "0.13"
actix-http = "3.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
url = "2.2"
actix-codec = "0.5"
futures = "0.3"
openssl = { version = "0.10" }
bytes = "1"
derive_more = "0.99"
base64 = "0.13"
libflate = "1.1"
log = "0.4"
env_logger = "0.9"
lazy_static = "1.4"
backoff = "0.4"
[dev-dependencies]
actix-rt = "2.7"