Skip to content

Commit 80215af

Browse files
committed
Fix hakari
1 parent 7964fda commit 80215af

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workspace-hack/Cargo.toml

+11-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish = false
1616
### BEGIN HAKARI SECTION
1717
[dependencies]
1818
arrayvec = { version = "0.7", default-features = false, features = ["std"] }
19-
bitflags-f595c2ba2a3f28df = { package = "bitflags", version = "2", default-features = false, features = ["serde", "std"] }
19+
bitflags = { version = "2", default-features = false, features = ["serde"] }
2020
bytes = { version = "1", features = ["serde"] }
2121
chrono = { version = "0.4", features = ["serde"] }
2222
clap = { version = "4", features = ["cargo", "derive", "env", "wrap_help"] }
@@ -65,7 +65,7 @@ uuid = { version = "1", features = ["serde", "v4"] }
6565
zerocopy = { version = "0.7", features = ["derive", "simd"] }
6666

6767
[build-dependencies]
68-
bitflags-f595c2ba2a3f28df = { package = "bitflags", version = "2", default-features = false, features = ["serde", "std"] }
68+
bitflags = { version = "2", default-features = false, features = ["serde"] }
6969
bytes = { version = "1", features = ["serde"] }
7070
cc = { version = "1", default-features = false, features = ["parallel"] }
7171
chrono = { version = "0.4", features = ["serde"] }
@@ -115,20 +115,22 @@ uuid = { version = "1", features = ["serde", "v4"] }
115115
zerocopy = { version = "0.7", features = ["derive", "simd"] }
116116

117117
[target.x86_64-unknown-linux-gnu.dependencies]
118-
bitflags-dff4ba8e3ae991db = { package = "bitflags", version = "1" }
118+
bitflags = { version = "2", default-features = false, features = ["std"] }
119119
dof = { version = "0.3", default-features = false, features = ["des"] }
120120
getrandom = { version = "0.2", default-features = false, features = ["std"] }
121121
hyper = { version = "1", features = ["full"] }
122122
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "tls12", "webpki-tokio"] }
123123
hyper-util = { version = "0.1", features = ["full"] }
124124
mio = { version = "1", features = ["net", "os-ext"] }
125+
nix = { version = "0.29", features = ["feature", "fs", "term", "uio"] }
125126
once_cell = { version = "1", features = ["unstable"] }
126127
rustix = { version = "0.38", features = ["fs", "stdio", "termios"] }
127128
rustls-pki-types = { version = "1", features = ["std"] }
128129
spin = { version = "0.9", default-features = false, features = ["once", "spin_mutex"] }
129130
tokio-util = { version = "0.7", features = ["codec", "io"] }
130131

131132
[target.x86_64-unknown-linux-gnu.build-dependencies]
133+
bitflags = { version = "2", default-features = false, features = ["std"] }
132134
dof = { version = "0.3", default-features = false, features = ["des"] }
133135
getrandom = { version = "0.2", default-features = false, features = ["std"] }
134136
hyper = { version = "1", features = ["full"] }
@@ -142,17 +144,20 @@ spin = { version = "0.9", default-features = false, features = ["once", "spin_mu
142144
tokio-util = { version = "0.7", features = ["codec", "io"] }
143145

144146
[target.aarch64-apple-darwin.dependencies]
147+
bitflags = { version = "2", default-features = false, features = ["std"] }
145148
getrandom = { version = "0.2", default-features = false, features = ["std"] }
146149
hyper = { version = "1", features = ["full"] }
147150
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "tls12", "webpki-tokio"] }
148151
hyper-util = { version = "0.1", features = ["full"] }
149152
mio = { version = "1", features = ["net", "os-ext"] }
153+
nix = { version = "0.29", features = ["feature", "fs", "term", "uio"] }
150154
once_cell = { version = "1", features = ["unstable"] }
151155
rustix = { version = "0.38", features = ["fs", "stdio", "termios"] }
152156
rustls-pki-types = { version = "1", features = ["std"] }
153157
tokio-util = { version = "0.7", features = ["codec", "io"] }
154158

155159
[target.aarch64-apple-darwin.build-dependencies]
160+
bitflags = { version = "2", default-features = false, features = ["std"] }
156161
getrandom = { version = "0.2", default-features = false, features = ["std"] }
157162
hyper = { version = "1", features = ["full"] }
158163
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "tls12", "webpki-tokio"] }
@@ -164,13 +169,14 @@ rustls-pki-types = { version = "1", features = ["std"] }
164169
tokio-util = { version = "0.7", features = ["codec", "io"] }
165170

166171
[target.x86_64-unknown-illumos.dependencies]
167-
bitflags-dff4ba8e3ae991db = { package = "bitflags", version = "1" }
172+
bitflags = { version = "2", default-features = false, features = ["std"] }
168173
dof = { version = "0.3", default-features = false, features = ["des"] }
169174
getrandom = { version = "0.2", default-features = false, features = ["std"] }
170175
hyper = { version = "1", features = ["full"] }
171176
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "tls12", "webpki-tokio"] }
172177
hyper-util = { version = "0.1", features = ["full"] }
173178
mio = { version = "1", features = ["net", "os-ext"] }
179+
nix = { version = "0.29", features = ["feature", "fs", "term", "uio"] }
174180
once_cell = { version = "1", features = ["unstable"] }
175181
rustix = { version = "0.38", features = ["fs", "stdio", "termios"] }
176182
rustls-pki-types = { version = "1", features = ["std"] }
@@ -179,6 +185,7 @@ tokio-util = { version = "0.7", features = ["codec", "io"] }
179185
toml_edit = { version = "0.19", features = ["serde"] }
180186

181187
[target.x86_64-unknown-illumos.build-dependencies]
188+
bitflags = { version = "2", default-features = false, features = ["std"] }
182189
dof = { version = "0.3", default-features = false, features = ["des"] }
183190
getrandom = { version = "0.2", default-features = false, features = ["std"] }
184191
hyper = { version = "1", features = ["full"] }

0 commit comments

Comments
 (0)