make dependencies optional in Aiken's manifest.

This commit is contained in:
KtorZ 2022-12-21 14:32:40 +01:00
parent 414a114530
commit 2aad1794a1
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ pub struct Config {
#[serde(default)]
pub description: String,
pub repository: Option<Repository>,
#[serde(default)]
pub dependencies: Vec<Dependency>,
}