Paul Campbell
8c19680056
Some checks failed
Rust / build (push) Successful in 1m15s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Failing after 10m22s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
Parameters were separated by ':', but are now separated by ','.
14 lines
201 B
Rust
14 lines
201 B
Rust
use derive_more::derive::Display;
|
|
use serde::Serialize;
|
|
|
|
use crate::newtype;
|
|
|
|
newtype!(
|
|
BranchName,
|
|
String,
|
|
Display,
|
|
Default,
|
|
Hash,
|
|
Serialize,
|
|
"The name of a Git branch"
|
|
);
|