Increase dependency limit (#454)

This commit is contained in:
Geometrically
2022-09-21 21:27:02 -07:00
committed by GitHub
parent d754eb74f7
commit 75b7583832
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ pub struct EditVersion {
pub changelog: Option<String>,
pub version_type: Option<models::projects::VersionType>,
#[validate(
length(min = 0, max = 256),
length(min = 0, max = 4096),
custom(function = "crate::util::validate::validate_deps")
)]
pub dependencies: Option<Vec<Dependency>>,