a9a4e022e6
Just keeping up momentum on the porting, we're getting closer to being able to drop cbindgen entirely.
25 lines
913 B
TOML
25 lines
913 B
TOML
autogen_warning = "/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */"
|
|
language = "C"
|
|
header = "#pragma once\n#include \"rpmostree-rust-prelude.h\"\nG_BEGIN_DECLS\n"
|
|
trailer = """
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(RORTreefile, ror_treefile_free)
|
|
G_END_DECLS
|
|
"""
|
|
|
|
[export]
|
|
prefix = "ROR"
|
|
# Here we exclude entries belonging to the C side which we use on the Rust side and so
|
|
# doesn't make sense to re-export.
|
|
exclude = ["RpmOstreeOrigin",
|
|
"PasswdDB",
|
|
"rpmostree_add_group_to_hash",
|
|
"rpmostree_add_passwd_to_hash",
|
|
"rpmostree_get_repodata_chksum_repr",
|
|
"rpmostree_origin_get_live_state" ]
|
|
|
|
[parse]
|
|
# We don't want cbindgen to parse libdnf-sys, since we're clients of the library, not
|
|
# providers. This should already be guaranteed by `parse_deps` being `false`, but include
|
|
# this here too to be explicit.
|
|
exclude = ["libdnf-sys"]
|