This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The up to date decorator (👍) is now customizable from setting crates.…
…upToDateDecorator #12
- Loading branch information
1 parent
9225def
commit 5f997ae
Showing
4 changed files
with
50 additions
and
6 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
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
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 |
---|---|---|
|
@@ -2,8 +2,18 @@ | |
"name": "crates", | ||
"displayName": "crates", | ||
"description": "Aims to help rust developers to manage dependencies while using Cargo.toml. It is only helpful if you are using dependencies from crates.io.", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"publisher": "serayuzgur", | ||
"author": { | ||
"name": "serayuzgur", | ||
"email": "[email protected]" | ||
}, | ||
"license": "LICENSE", | ||
"bugs": { | ||
"url": "https://github.com/serayuzgur/crates/issues", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/serayuzgur/crates/blob/master/README.md", | ||
"engines": { | ||
"vscode": "^1.23.0" | ||
}, | ||
|
@@ -37,7 +47,19 @@ | |
"command": "crates.replaceVersion", | ||
"title": "crates: Replace Version" | ||
} | ||
] | ||
], | ||
"configuration": { | ||
"type": "object", | ||
"title": "Crates configuration", | ||
"properties": { | ||
"crates.upToDateDecorator": { | ||
"type": "string", | ||
"scope": "resource", | ||
"default": "đź‘Ť", | ||
"description": "The text to show when dependency is up to date. " | ||
} | ||
} | ||
} | ||
}, | ||
"main": "./out/extension", | ||
"scripts": { | ||
|
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