axum/.github/DISCUSSION_TEMPLATE/q-a.yml

24 lines
590 B
YAML
Raw Normal View History

title: 'Q&A'
body:
- type: textarea
attributes:
label: Summary
description: 'Your question:'
validations:
required: true
- type: input
attributes:
label: axum version
description: 'Please look it up in `Cargo.lock`'
validations:
required: true
- type: markdown
attributes:
value: |
> [!NOTE]
> If you have `jq` installed, you can look up the version by running
>
> ```bash
> cargo metadata --format-version=1 | jq -r '.packages[] | select(.name == "axum") | .version'
> ```