forked from wr-org/webex-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 905 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 905 Bytes
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
[package]
name = "webex"
version = "0.2.1"
authors = ["Scott Hutton <shutton@pobox.com>"]
edition = "2018"
description = "Interface to Webex Teams REST and WebSocket APIs"
keywords = ["webex", "spark"]
categories = ["asynchronous"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/shutton/webex-rust.git"
[dependencies]
async-std = "1.5.0"
error-chain = "0.12.2"
futures = "0.3.4"
futures-util = "0.3.4"
hyper = "0.13"
hyper-tls = "0.4.1"
log = "0.4"
serde_json = "1.0"
tokio-tls = "0.3.0"
tungstenite = "0.10.1"
url = "2.1.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0.106"
features = ["derive"]
[dependencies.tokio]
version = "0.2.16"
features = ["time", "stream", "fs", "macros", "uds", "io-util"]
[dependencies.tokio-tungstenite]
version = "0.10.1"
features = ["tls"]
[dependencies.uuid]
version = "0.8"
features = ["v4"]