-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (107 loc) · 3.07 KB
/
Cargo.toml
File metadata and controls
112 lines (107 loc) · 3.07 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
resolver = "3"
members = [
"cli-core",
"cli-cmd/*",
"openstack_sdk",
"openstack_cli",
"openstack_tui",
"openstack_types",
"sdk/*",
"xtask",
"fuzz",
"types/*",
]
# webauthn-rs should not land in the default members since it pulls openssl that
# is not available for alpine
default-members = [
"sdk/auth-core",
"sdk/auth-application-credential",
"sdk/auth-multifactor",
"sdk/auth-oidcaccesstoken",
"sdk/auth-password",
"sdk/auth-receipt",
"sdk/auth-totp",
"sdk/auth-websso",
"sdk/core",
"sdk/block-storage",
"sdk/container-infrastructure-management",
"sdk/compute",
"sdk/dns",
"sdk/identity",
"sdk/image",
"sdk/load-balancer",
"sdk/network",
"sdk/object-store",
"sdk/placement",
"cli-core",
"cli-cmd/*",
"types/*",
"openstack_*"]
[workspace.package]
license = "Apache-2.0"
edition = "2024"
authors = ["Artem Goncharov (gtema)"]
rust-version = "1.88" # MSRV
homepage = "https://github.com/gtema/openstack"
repository = "https://github.com/gtema/openstack"
[workspace.dependencies]
async-trait = { version = "^0.1" }
base64 = "0.22"
bytes = "^1.11"
chrono = { version = "^0.4", default-features = false, features = ["clock", "serde"] }
clap = { version = "^4.6", features = ["cargo", "color", "derive", "env"] }
clap_complete = { version = "^4.6" }
color-eyre = { version = "^0.6", features = ["default", "issue-url", "track-caller"] }
config = { version = "^0.15", default-features = false }
derive_builder = { version = "^0.20" }
dialoguer = "^0.12.0"
dirs = "^6.0"
eyre = { version = "^0.6" }
form_urlencoded = "^1.2"
futures = "^0.3"
futures-util = { version = "^0.3", default-features = false}
http = "^1.4"
http-body-util = "^0.1"
httpmock = { version = "0.8" }
hyper = { version = "^1.8" }
hyper-util = { version = "^0.1" }
inventory = { version = "0.3" }
itertools = { version = "^0.14" }
json-patch = { version = "^4.1" }
lazy_static = { version = "^1.5" }
open = { version = "^5.3" }
regex = { version = "^1.12" }
reqwest = { version = "^0.13", default-features = false }
reserve-port = "^2.4"
secrecy = { version = "0.10", features = ["serde"] }
serde = { version="^1.0", features=["derive"] }
serde_json = "^1.0"
serde_bytes = "^0.11"
serde_urlencoded = "^0.7"
strip-ansi-escapes = "^0.2"
structable = { version = "^0.3" }
tempfile = "^3.27"
tokio = { version = "^1.50", default-features = false, features = ["macros"]}
tokio-util = { version="^0.7", features = ["io", "compat"]}
thiserror = { version = "^2.0" }
tracing = "^0.1"
tracing-error = { version = "^0.2" }
tracing-subscriber = { version = "^0.3", features = ["env-filter", "serde"] }
tracing-test = { version = "^0.2" }
url = { version = "^2.5", features = ["serde"] }
webauthn-authenticator-rs = { version = "0.5", features = ["ctap2", "mozilla", "ui-cli"]}
webauthn-rs-proto = { version = "0.5" }
uuid = { version = "1.23" }
[profile.dev]
debug = 0
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.lints.clippy]
result_large_err = "allow"
unwrap_used = "deny"
expect_used = "deny"
enum_glob_use = "deny"
module_inception = "allow"