You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bindgen-cli/options.rs
+1-20
Original file line number
Diff line number
Diff line change
@@ -239,9 +239,6 @@ struct BindgenCommand {
239
239
/// Conservatively generate inline namespaces to avoid name conflicts.
240
240
#[arg(long)]
241
241
conservative_inline_namespaces:bool,
242
-
/// MSVC C++ ABI mangling. DEPRECATED: Has no effect.
243
-
#[arg(long)]
244
-
use_msvc_mangling:bool,
245
242
/// Allowlist all the free-standing functions matching <REGEX>. Other non-allowlisted functions will not be generated.
246
243
#[arg(long, value_name = "REGEX")]
247
244
allowlist_function:Vec<String>,
@@ -266,20 +263,14 @@ struct BindgenCommand {
266
263
/// Do not record matching items in the regex sets. This disables reporting of unused items.
267
264
#[arg(long)]
268
265
no_record_matches:bool,
269
-
/// Ignored - this is enabled by default.
270
-
#[arg(long = "size_t-is-usize")]
271
-
size_t_is_usize:bool,
272
266
/// Do not bind size_t as usize (useful on platforms where those types are incompatible).
273
267
#[arg(long = "no-size_t-is-usize")]
274
268
no_size_t_is_usize:bool,
275
269
/// Do not format the generated bindings with rustfmt.
276
270
#[arg(long)]
277
271
no_rustfmt_bindings:bool,
278
-
/// Format the generated bindings with rustfmt. DEPRECATED: --rustfmt-bindings is now enabled by default. Disable with --no-rustfmt-bindings.
279
-
#[arg(long)]
280
-
rustfmt_bindings:bool,
281
272
/// The absolute path to the rustfmt configuration file. The configuration file will be used for formatting the bindings. This parameter is incompatible with --no-rustfmt-bindings.
0 commit comments