1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2023  Aravinth Manivannan <realaravinth@batsense.net>
// SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
//
// SPDX-License-Identifier: MIT

//! VCS repository relative to a project.
use serde::{Deserialize, Serialize};

/// VCS repository relative to a project.
#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
pub struct Repository {
    /// Suffix to add to the clone URL of the project to access the repository.
    pub name: String,
}