Skip to content

Commit e050a3a

Browse files
CopilotMossaka
andauthored
Add cargo audit configuration to acknowledge unmaintained paste dependency warning (#170)
* Initial plan * Add cargo audit configuration to acknowledge unmaintained paste dependency warning Co-authored-by: Mossaka <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: Mossaka <[email protected]>
1 parent 7dc9348 commit e050a3a

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
44

55
## [Unreleased]
66

7+
### Fixed
8+
- Add cargo audit configuration to acknowledge unmaintained `paste` dependency warning ([#169](https://github.com/microsoft/wassette/pull/169))
9+
710
### Added
811
- Copyright header instructions to Rust development guidelines ([#TBD](https://github.com/microsoft/wassette/pull/TBD))
912
- Comprehensive Go development guide for authoring Wasm components ([#163](https://github.com/microsoft/wassette/pull/163))

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

audit.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Cargo Audit Configuration
2+
[advisories]
3+
# Allow the paste crate warning as it's classified as unmaintained but still functional
4+
# We acknowledge the risk and plan to migrate to pastey in the future when possible
5+
ignore = [
6+
"RUSTSEC-2024-0436" # paste - no longer maintained
7+
]

0 commit comments

Comments
 (0)