2022-07-21 01:19:33 +02:00
name : 'cargo-semver-checks'
2022-07-21 01:34:12 +02:00
description : 'Ensure the public API in your Rust crate follows semantic versioning'
2022-08-10 07:28:06 +02:00
branding :
2022-09-28 21:16:55 +02:00
icon : 'check-circle'
2022-08-10 07:28:06 +02:00
color : 'green'
2022-07-21 01:19:33 +02:00
inputs :
2023-02-22 19:43:43 +01:00
package :
description : 'The package whose API to check for semver (in Package Id Specification format, see https://doc.rust-lang.org/cargo/reference/pkgid-spec.html for reference). If not set, all packages in the workspace are processed.'
2022-07-21 01:19:33 +02:00
required : false
default : ''
2023-01-03 20:39:25 +01:00
manifest-path :
2023-02-22 19:43:43 +01:00
description : 'Path to Cargo.toml of crate or workspace to check. Has an effect only if package is not specified.'
2023-01-03 20:39:25 +01:00
required : false
default : ''
2023-01-03 20:49:57 +01:00
verbose :
description : 'Enables verbose output of `cargo-semver-checks`.'
type : boolean
required : true
default : false
2022-07-21 01:19:33 +02:00
runs :
2023-01-09 00:46:08 +01:00
using : 'node16'
2023-02-20 19:53:29 +01:00
main : 'dist/index.js'