-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (43 loc) · 1.49 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
[package]
authors = ["Sam Grimee <[email protected]>"]
categories = ["command-line-utilities"]
description = "A minimalist terminal user interface for Cisco Webex Teams"
documentation = "https://github.com/sgrimee/webex-tui"
edition = "2021"
homepage = "https://github.com/sgrimee/webex-tui"
keywords = ["cisco", "webex", "tui", "cli", "terminal"]
license = "MIT OR Apache-2.0"
name = "webex-tui"
repository = "https://github.com/sgrimee/webex-tui"
version = "0.7.3"
[dependencies]
base64 = "0.22"
chrono = { version = "0.4.31" }
clap = { version = "4.3.19", features = ["cargo"] }
color-eyre = "0.6.2"
dirs = "5.0.1"
enum-iterator = "2.0.0"
gethostname = "0.5"
html2text = "0.12"
itertools = "0.13"
log = "0.4.19"
oauth2 = "4.4.1"
open = "5.0.0"
serde = { version = "1.0.180", features = ["derive"] }
serde_json = "1.0.111"
serde_yaml = "0.9.25"
textwrap = "0.16"
tokio = { version = "1.29.1", features = ["rt", "macros"] }
webbrowser = "1.0.1"
webex = "0.9.4"
# webex = { path = "../vendor/webex-rust" }
# webex = { git = "https://github.com/sgrimee/webex-rust.git", rev = "3c78e82bef4eaf47311c3ee97858018b1a54c4fb" }
# webex = { git = "https://github.com/sgrimee/webex-rust.git", branch = "42-api_alignment_sgrimee" }
# webex = { git = "https://github.com/Nabushika/webex-rust.git", branch = "master"}
# Strongly coupled dependencies
crossterm = "0.28"
ratatui = "0.28" # 0.28 not compatible with tui-logger 0.11
tui-logger = "0.12"
tui-textarea = "0.6.1" # 0.6 requires ratatui 0.28
[dev-dependencies]
rstest = "0.22"