Skip to main content

stern4rust/
config.rs

1// Copyright 2025 Umberto Gotti <umberto.gotti@umbertogotti.dev>
2// Licensed under the MIT License
3// SPDX-License-Identifier: MIT
4
5use std::path::PathBuf;
6
7#[derive(Debug, Clone, Default, PartialEq, Eq)]
8pub struct Config {
9    pub manifest_path: Option<PathBuf>,
10    pub packages: Vec<String>,
11}