配置 gnrt_config.toml

Cargo.toml 一起使用的是 gnrt_config.toml。此文件包含 Chromium 专用扩展程序,可用于处理 crate。

如果添加新的 crate,至少要明确指定 group。可以为以下选项之一:

  1. # 'safe': The library satisfies the rule-of-2 and can be used in any process.
  2. # 'sandbox': The library does not satisfy the rule-of-2 and must be used in
  3. # a sandboxed process such as the renderer or a utility process.
  4. # 'test': The library is only used in tests.

例如:

  1. [crate.my-new-crate]
  2. group = 'test' # only used in test code

根据 crate 源代码布局,您可能还需要使用此文件指定其 LICENSE 文件的所在位置。

稍后,我们将介绍需要在此文件中配置的其他内容,以便能够解决问题。