-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
56 lines (48 loc) · 1.58 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
53
54
[package]
name = "pippo"
version = "0.0.1-SNAPSHOT"
authors = ["Nico Bellack", "Tobias Richter", "Benjamin Sommerfeld"]
description = "Rust-powered tool to communicate with Adobe Cloud Manager"
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/wcm-io-devops/pippo"
repository = "https://github.com/wcm-io-devops/pippo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-ctrlc = "1.2.0"
async-trait = "0.1.83"
cargo-edit = "0.13.0"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "3.2.25", features = ["derive", "yaml", "env"] }
colored = "2.1.0"
env_logger = "0.11.5"
flate2 = "1.0.34"
futures-lite = "2.4.0"
jsonwebtoken = "9.3.0"
log = "0.4.22"
magic-crypt = "4.0.1"
num = "0.4.3"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
strum = "0.26.3"
strum_macros = "0.26.4"
tokio = { version = "1.41.0", features = ["full"] }
headers = "0.4.0"
[dependencies.reqwest]
version = "0.12.9"
#default-features = false
features = ["json", "rustls-tls"]
[dependencies.uuid]
version = "1.11.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[package.metadata.cross.target.x86_64-unknown-linux-gnu]
pre-build = [
"apt-get update && apt-get install --assume-yes libssl-dev"
]
[target.x86_64-apple-darwin.dependencies]
openssl = { version = "0.10.68", features = ["vendored"] }