We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5b14b8 commit d2078b0Copy full SHA for d2078b0
src/publish_rate_limit.rs
@@ -127,7 +127,7 @@ impl PublishRateLimit {
127
.unwrap_or_default();
128
if today >= daily_limit {
129
return Err(cargo_err(
130
- "You have published too many crates in the last 24 hours",
+ "You have published too many versions of this crate in the last 24 hours",
131
));
132
}
133
src/tests/version.rs
@@ -194,6 +194,6 @@ fn daily_limit() {
194
let json = response.into_json();
195
assert_eq!(
196
json["errors"][0]["detail"],
197
- "You have published too many crates in the last 24 hours"
+ "You have published too many versions of this crate in the last 24 hours"
198
);
199
0 commit comments