-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
95 lines (78 loc) · 2.34 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
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
[workspace]
members = ['qcs-api-client-common', 'qcs-api-client-grpc', 'qcs-api-client-openapi']
resolver = '2'
[workspace.dependencies]
futures-util = '0.3.30'
http = '1.1'
http-body = '1'
http-body-util = '0.1.2'
hyper = '1.4.1'
jsonwebtoken = '9.3.0'
once_cell = '1.17.0'
opentelemetry = '0.24.0'
opentelemetry-http = '0.13.0'
opentelemetry_sdk = '0.24.0'
pbjson = '0.7.0'
pbjson-build = '0.7.0'
pbjson-types = '0.7.0'
prost = '0.13.1'
prost-build = '0.13.3'
rstest = '0.17.0'
serde = '1.0.140'
serde_json = '1.0.91'
tempfile = '3.3.0'
thiserror = '1.0.32'
tonic-build = '0.12.3'
tonic-health = '0.12.3'
tonic-web = '0.12.3'
tracing-opentelemetry = '0.25.0'
tracing-subscriber = '0.3.18'
urlpattern = '0.2.0'
[workspace.dependencies.async-std]
features = ['attributes']
version = '1.12.0'
[workspace.dependencies.backoff]
features = ['tokio']
version = '0.4.0'
[workspace.dependencies.hyper-proxy2]
default-features = false
features = ['rustls']
version = '0.1.0'
[workspace.dependencies.hyper-socks2]
default-features = false
version = '0.9.1'
[workspace.dependencies.hyper-util]
features = ['client-legacy']
version = '0.1.6'
[workspace.dependencies.reqwest]
default-features = false
features = ['json', 'rustls-tls-native-roots']
version = '0.12.5'
[workspace.dependencies.reqwest-middleware]
features = ['json']
version = '0.3.2'
[workspace.dependencies.reqwest-tracing]
features = ['opentelemetry_0_23', 'tracing-opentelemetry_0_24_pkg']
version = '0.5.2'
[workspace.dependencies.tokio]
features = ['time']
version = '1.38.0'
[workspace.dependencies.tokio-stream]
features = ['net']
version = '0.1.15'
[workspace.dependencies.tonic]
features = ['tls-roots', 'tls-native-roots']
version = '0.12.3'
[workspace.dependencies.tower]
features = ['retry']
version = '0.4'
[workspace.dependencies.tower-http]
features = ['trace']
version = '0.5.2'
[workspace.dependencies.tracing]
version = '0.1.37'
[workspace.dependencies.url]
version = '2.3.1'
[workspace.dependencies.uuid]
features = ['v4']
version = '1.10.0'