配置 gnrt_config.toml
与 Cargo.toml
一起使用的是 gnrt_config.toml
。此文件包含 Chromium 专用扩展程序,可用于处理 crate。
如果添加新的 crate,至少要明确指定 group
。可以为以下选项之一:
# 'safe': The library satisfies the rule-of-2 and can be used in any process.
# 'sandbox': The library does not satisfy the rule-of-2 and must be used in
# a sandboxed process such as the renderer or a utility process.
# 'test': The library is only used in tests.
例如:
[crate.my-new-crate]
group = 'test' # only used in test code
根据 crate 源代码布局,您可能还需要使用此文件指定其 LICENSE
文件的所在位置。
稍后,我们将介绍需要在此文件中配置的其他内容,以便能够解决问题。