-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 722 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
[package]
name = "confluence-cli"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Agent-friendly CLI for Confluence Cloud"
repository = "https://github.com/laipz8200/confluence-cli"
[dependencies]
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
html-escape = "0.2"
pulldown-cmark = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rpassword = "7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
toml = "0.8"
url = "2"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
pretty_assertions = "1"
tempfile = "3"
wiremock = "0.6"