-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Rust Cargo Plugin | ||
|
||
This is a plugin for [Universal Changesets](https://github.com/universal-changesets/core) that allows you to get/set the version of your Rust project via the `Cargo.toml` file. | ||
|
||
## Usage | ||
|
||
To use this plugin, you need to reference it within the `.changeset/config.json` file: | ||
|
||
```json | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/universal-changesets/core/main/changeset-config.schema.json", | ||
"plugin": { | ||
"sha256": "e63c184c019d2198b497ceeaefeb59587da138ca7f78edc34e21332a7cc4b18c", | ||
"url": "gh:universal-changesets/[email protected]" | ||
} | ||
} | ||
``` | ||
|
||
Once you've done that, you can use the `changeset get` and `changeset version` functions in your project. Refer to the [documentation](https://github.com/universal-changesets/core/blob/main/docs/plugins.md) for more information. |