-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
60 lines (56 loc) · 1.88 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
55
56
57
58
59
60
[workspace]
resolver = "2"
members = [
"openstack_sdk",
"openstack_cli",
"openstack_tui",
"structable_derive",
"xtask",
"fuzz"
]
default-members = ["openstack_cli", "openstack_sdk", "openstack_tui"]
[workspace.package]
license = "Apache-2.0"
edition = "2021"
authors = ["Artem Goncharov (gtema)"]
rust-version = "1.76" # MSRV
homepage = "https://github.com/gtema/openstack"
repository = "https://github.com/gtema/openstack"
[workspace.dependencies]
async-trait = { version = "^0.1" } #, optional = true }
bytes = "^1.9"
chrono = { version = "^0.4", default-features = false, features = ["clock", "serde"] }
clap = { version = "^4.5", features = ["cargo", "color", "derive", "env"] }
clap_complete = { version = "^4.5" }
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.11"
dirs = "^6.0"
eyre = { version = "^0.6" }
futures = "^0.3"
futures-util = { version = "^0.3", default-features = false}
http = "^1.2"
itertools = { version = "^0.14" }
json-patch = { version = "^3.0" }
lazy_static = { version = "^1.5" }
regex = { version = "^1.11" }
reqwest = { version = "^0.12", features = ["blocking", "stream", "rustls-tls"], default-features = false }
serde = { version="^1.0", features=["derive"] }
serde_json = "^1.0"
serde_bytes = "^0.11"
strip-ansi-escapes = "^0.2"
tempfile = "^3.15"
tokio = { version = "^1.43", features = ["fs", "macros", "net", "sync", "rt-multi-thread", "io-std", "signal"]}
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"] }
url = "^2.5"
[profile.dev]
debug = 0
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"