community.general.cargo 模块 – 使用 cargo 管理 Rust 包
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:community.general.cargo
。
community.general 4.3.0 中的新功能
概要
使用 cargo 管理 Rust 包。
要求
执行此模块的主机上需要以下要求。
已安装 cargo
参数
参数 |
注释 |
---|---|
要从中安装 Rust 包的源目录的路径。 这仅在安装软件包时使用。 |
|
系统中安装的 如果未指定,该模块将在 |
|
使用锁定的依赖项安装。 这仅在安装软件包时使用。 选项
|
|
要安装的 Rust 包的名称。 |
|
-> 安装 Rust 包的基本路径。Cargo 会自动追加 |
|
Rust 包的状态。 选项
|
|
-> 要安装的版本。如果 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全 |
可以在 |
|
支持:无 |
在差异模式下,将返回有关已更改内容(或可能需要在 |
示例
- name: Install "ludusavi" Rust package
community.general.cargo:
name: ludusavi
- name: Install "ludusavi" Rust package with locked dependencies
community.general.cargo:
name: ludusavi
locked: true
- name: Install "ludusavi" Rust package in version 0.10.0
community.general.cargo:
name: ludusavi
version: '0.10.0'
- name: Install "ludusavi" Rust package to global location
community.general.cargo:
name: ludusavi
path: /usr/local
- name: Remove "ludusavi" Rust package
community.general.cargo:
name: ludusavi
state: absent
- name: Update "ludusavi" Rust package its latest version
community.general.cargo:
name: ludusavi
state: latest
- name: Install "ludusavi" Rust package from source directory
community.general.cargo:
name: ludusavi
directory: /path/to/ludusavi/source