Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/fix your mistakes #39

Merged
merged 4 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Lint Markdown code
uses: DavidAnson/markdownlint-cli2-action@v16
uses: DavidAnson/markdownlint-cli2-action@v17
clippy:
name: Lint with Clippy
runs-on: windows-latest
Expand Down
130 changes: 65 additions & 65 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
name = "windows-artifacts-generator"
version = "1.0.0"
edition = "2021"
rust-version = "1.74.1"
description = "Generate malware artifacts for detection tests"
documentation = "https://frack113.github.io/WAG/"
repository = "https://github.com/frack113/WAG/"
Expand All @@ -18,7 +19,6 @@ keywords = [
"rust",
]
categories = ["command-line-utilities"]
rust-version = "1.80.1"

[[bin]]
name = "wag"
Expand All @@ -39,12 +39,12 @@ windows = { version = "0.58.0", features = [
"Win32_System_Memory",
] }
base64 = { version = "0.22.1" }
clap = { version = "4.5.16", features = ["derive"] }
clap = { version = "4.5.20", features = ["derive"] }
frack113 marked this conversation as resolved.
Show resolved Hide resolved
rand = "0.8.5"
regex_generate = "0.2.3"

[build-dependencies]
embed-resource = "2.4.3"
embed-resource = "2.5.0"

[profile.release]
opt-level = 3
Expand Down
Loading
Loading