feat(init): add an optional funding field

This commit is contained in:
Amaan Qureshi 2025-01-23 01:07:09 -05:00
parent 4ab78ae00d
commit 6dbcfdf282
6 changed files with 60 additions and 0 deletions

View file

@ -217,6 +217,8 @@ pub struct Author {
pub struct Links {
pub repository: Url,
#[serde(skip_serializing_if = "Option::is_none")]
pub funding: Option<Url>,
#[serde(skip_serializing_if = "Option::is_none")]
pub homepage: Option<String>,
}