-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.25 KB
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 = "deslicer-cli"
version = "1.0.0"
edition = "2021"
rust-version = "1.88"
authors = ["Deslicer <engineering@deslicer.ai>"]
license = "Apache-2.0"
repository = "https://github.com/deslicer/cli"
homepage = "https://deslicer.ai"
description = "Deslicer CLI — vendor-neutral CI client for planning, approving, and shipping Splunk changes via DAP."
keywords = ["deslicer", "splunk", "dap", "cicd", "deploy"]
categories = ["command-line-utilities"]
# Empty workspace table: makes this crate standalone even though it sits inside another workspace dir.
[workspace]
[[bin]]
name = "deslicer"
path = "src/main.rs"
[lib]
name = "deslicer_cli"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "process"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-trait = "0.1"
url = "2"
uuid = { version = "1", features = ["serde"] }
base64 = "0.22"
sha2 = "0.10"
[dev-dependencies]
wiremock = "0.6"
rsa = "0.9"
rand = "0.8"
tempfile = "3"