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:
|
|
|
|
crate-name:
|
2023-01-03 20:17:02 +01:00
|
|
|
description: 'The crate whose API to check for semver. If not set, all crates 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:
|
|
|
|
description: 'Path to Cargo.toml of crate or workspace to check. Has an effect only if crate-name is not specified.'
|
|
|
|
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'
|