-
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
1 parent
72b4142
commit b732ee6
Showing
5 changed files
with
61 additions
and
61 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "rustnpmtest", | ||
"version": "1.0.5", | ||
"description": "Simple CLI to print a message", | ||
"bin": { | ||
"rustnpmtest": "./index.js" | ||
}, | ||
"keywords": [ | ||
"cli", | ||
"rust" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vincentdchn/rust-npm" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/vincentdchn/rust-npm" | ||
}, | ||
"homepage": "https://github.com/vincentdchn/rust-npm#readme", | ||
"license": "MIT", | ||
"optionalDependencies": { | ||
"rustnpmtest-linux-x64": "1.0.5", | ||
"rustnpmtest-linux-arm64": "1.0.5", | ||
"rustnpmtest-darwin-x64": "1.0.5", | ||
"rustnpmtest-darwin-arm64": "1.0.5", | ||
"rustnpmtest-windows-x64": "1.0.5", | ||
"rustnpmtest-windows-arm64": "1.0.5" | ||
} | ||
"name": "rustnpmtest", | ||
"version": "1.0.6", | ||
"description": "Simple CLI to print a message", | ||
"bin": { | ||
"rustnpmtest": "./index.js" | ||
}, | ||
"keywords": [ | ||
"cli", | ||
"rust" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vincentdchn/rust-npm" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/vincentdchn/rust-npm" | ||
}, | ||
"homepage": "https://github.com/vincentdchn/rust-npm#readme", | ||
"license": "MIT", | ||
"optionalDependencies": { | ||
"rustnpmtest-linux-x64": "1.0.5", | ||
"rustnpmtest-linux-arm64": "1.0.5", | ||
"rustnpmtest-darwin-x64": "1.0.5", | ||
"rustnpmtest-darwin-arm64": "1.0.5", | ||
"rustnpmtest-windows-x64": "1.0.5", | ||
"rustnpmtest-windows-arm64": "1.0.5" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "rustnpmtest", | ||
"version": "1.0.5", | ||
"description": "Simple CLI to print a message", | ||
"keywords": [ | ||
"cli", | ||
"rust" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vincentdchn/rust-npm.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/vincentdchn/rust-npm/issues" | ||
}, | ||
"homepage": "https://github.com/vincentdchn/rust-npm#readme", | ||
"license": "MIT", | ||
"scripts": { | ||
"action": "ncc build action/index.ts -o action", | ||
"bump": "node ./scripts/bump-version.js" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/exec": "^1.1.1", | ||
"@actions/github": "^6.0.0", | ||
"@actions/tool-cache": "^2.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.0.0", | ||
"@vercel/ncc": "^0.38.1", | ||
"typescript": "^5.0.0" | ||
} | ||
"name": "rustnpmtest", | ||
"version": "1.0.6", | ||
"description": "Simple CLI to print a message", | ||
"keywords": [ | ||
"cli", | ||
"rust" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vincentdchn/rust-npm.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/vincentdchn/rust-npm/issues" | ||
}, | ||
"homepage": "https://github.com/vincentdchn/rust-npm#readme", | ||
"license": "MIT", | ||
"scripts": { | ||
"action": "ncc build action/index.ts -o action", | ||
"bump": "node ./scripts/bump-version.js" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/exec": "^1.1.1", | ||
"@actions/github": "^6.0.0", | ||
"@actions/tool-cache": "^2.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.0.0", | ||
"@vercel/ncc": "^0.38.1", | ||
"typescript": "^5.0.0" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
fn main() { | ||
println!("Hello, world!"); | ||
println!("Hello, world! Again"); | ||
} |