forked from omnect/omnect-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (76 loc) · 2.8 KB
/
Cargo.toml
File metadata and controls
80 lines (76 loc) · 2.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
authors = ["omnect@conplement.de>"]
description = "This tool provides a command-line interface to configure omnect-os images and to communicate with omnect-os empowered devices."
edition = "2021"
homepage = "https://www.omnect.io/home"
license = "MIT OR Apache-2.0"
name = "omnect-cli"
readme = "README.md"
repository = "https://github.com/omnect/omnect-cli"
version = "0.24.16"
[dependencies]
actix-web = "4.9"
anyhow = "1"
# switch back to https://github.com/Azure/azure-sdk-for-rust.git as soon as
# https://github.com/Azure/azure-sdk-for-rust/pull/1636
# is merged and a new new release is available
#azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", tag = "v2024-??-??" }
#azure_iot_deviceupdate = { git = "https://github.com/Azure/azure-sdk-for-rust.git", tag = "v2024-??-??" }
#azure_identity = { git = "https://github.com/Azure/azure-sdk-for-rust.git", tag = "v2024-??-??" }
#azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", tag = "v2024-??-??" }
#azure_storage_blobs = { git = "https://github.com/Azure/azure-sdk-for-rust.git", tag = "v2024-??-??" }
azure_core = { git = "https://github.com/omnect/azure-sdk-for-rust.git" }
azure_iot_deviceupdate = { git = "https://github.com/omnect/azure-sdk-for-rust.git" }
azure_identity = { git = "https://github.com/omnect/azure-sdk-for-rust.git" }
azure_storage = { git = "https://github.com/omnect/azure-sdk-for-rust.git" }
azure_storage_blobs = { git = "https://github.com/omnect/azure-sdk-for-rust.git" }
base64 = "0.22"
bzip2 = "0.5"
clap = { version = "4.5", features = ["derive"] }
directories = "6.0"
env_logger = "0.11"
filemagic = "0.13"
flate2 = "1.1"
omnect-crypto = { git = "https://github.com/omnect/omnect-crypto.git", tag = "0.4.0" }
keyring = "3.6"
libfs = "0.8"
log = "0.4"
num_cpus = "1.16"
oauth2 = { version = "5.0", features = ["reqwest"] }
open = "5.3"
regex = "1.11"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1"
sha2 = "0.10"
stdext = "0.3"
strum = "0.27"
strum_macros = "0.27"
tempfile = "3.17"
time = { version = "0.3", features = ["formatting", "serde"] }
tokio = { version = "1", features = [
"macros",
"io-std",
"io-util",
"fs",
"net",
"rt-multi-thread",
] }
toml = "0.8"
uuid = { version = "1.15", default-features = false, features = ["v4"] }
url = { version = "2.5" }
validator = { version = "0.20", features = ["derive"] }
xz2 = "0.1"
[dev-dependencies]
assert_cmd = "2.0"
assert-json-diff = "2.0"
data-encoding = "2.8"
file_diff = "1.0"
httpmock = "0.7"
ring = "0.17"
tar = "0.4"
# metadata for building with cargo-deb (https://crates.io/crates/cargo-deb)
[package.metadata.deb]
depends = "bmap-tools, e2tools, fdisk, keychain, libc6 (>= 2.34), libmagic1, libssl3 (>= 3.0.0), mtools"
revision = ""