ansible-wrapper 2026.3.8

Wrapper around various Ansible commands to automatically manage dependencies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: The ansible-wrapper Authors
// SPDX-License-Identifier: 0BSD

use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct PyProjectFile {
    pub(crate) project: Project,
}

#[derive(Deserialize, Debug)]
pub struct Project {
    pub(crate) dependencies: Vec<String>,
}