-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
52 lines (45 loc) · 1.07 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
46
47
48
49
50
51
52
[package]
name = "webex"
version = "0.10.0"
authors = [
"Scott Hutton <[email protected]>",
"Milan Stastny <[email protected]>",
"Abel Shields <[email protected]>",
]
edition = "2021"
description = "Interface to Webex Teams REST and WebSocket APIs"
keywords = ["webex", "spark"]
categories = ["asynchronous"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wr-org/webex-rust"
[dependencies]
base64 = "0.22.1"
futures = "0.3.30"
futures-util = "0.3.30"
log = "0.4"
serde_json = "1.0"
tungstenite = "0.23.0"
url = "2.5"
lazy_static = "1.5.0"
serde_html_form = "0.2.6"
serde_with = { version = "3.9.0", features = ["macros"] }
thiserror = "1.0.63"
reqwest = { version = "0.12.5", features = ["json"] }
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0.207"
features = ["derive"]
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.23.1"
features = ["connect", "native-tls"]
[dependencies.uuid]
version = "1.10"
features = ["v4"]
[dev-dependencies]
env_logger = "0.11.5"