From ea1acedf4ec84fa1f9e48b0b9dd7e15afd63ece4 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Fri, 19 Jan 2024 14:28:23 -0600 Subject: [PATCH] moving cbingen.tom out --- cbindgen.toml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 cbindgen.toml diff --git a/cbindgen.toml b/cbindgen.toml deleted file mode 100644 index ab815ea..0000000 --- a/cbindgen.toml +++ /dev/null @@ -1,32 +0,0 @@ -[parse] -parse_deps = false -expand = ["rust-circom-compat-ffi"] - -# Configuration for name mangling -[export.mangle] -# Whether the types should be renamed during mangling, for example -# c_char -> CChar, etc. -rename_types = "CamelCase" -# Whether the underscores from the mangled name should be omitted. -remove_underscores = true - -[struct] -# A rule to use to rename struct field names. The renaming assumes the input is -# the Rust standard snake_case, however it acccepts all the different rename_args -# inputs. This means many options here are no-ops or redundant. -# -# possible values (that actually do something): -# * "CamelCase": my_arg => myArg -# * "PascalCase": my_arg => MyArg -# * "GeckoCase": my_arg => mMyArg -# * "ScreamingSnakeCase": my_arg => MY_ARG -# * "None": apply no renaming -# -# technically possible values (that shouldn't have a purpose here): -# * "SnakeCase": apply no renaming -# * "LowerCase": apply no renaming (actually applies to_lowercase, is this bug?) -# * "UpperCase": same as ScreamingSnakeCase in this context -# * "QualifiedScreamingSnakeCase" => same as ScreamingSnakeCase in this context -# -# default: "None" -rename_fields = "CamelCase"