Skip to content

Commit 359c3e5

Browse files
committed
feat: third major rewrite
1 parent c45da43 commit 359c3e5

38 files changed

Lines changed: 1719 additions & 5666 deletions

.github/workflows/security-audit.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
push:
88
paths:
99
- "**/Cargo.toml"
10-
- "**/Cargo.lock"
1110
- "**/deny.toml"
1211

1312
pull_request:

.gitignore

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1-
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2-
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,rust
3-
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,rust
4-
5-
### macOS ###
61
# General
72
.DS_Store
83
.AppleDouble
94
.LSOverride
10-
11-
# Icon must end with two \r
12-
Icon
5+
Icon[
6+
]
137

148
# Thumbnails
159
._*
@@ -30,46 +24,37 @@ Network Trash Folder
3024
Temporary Items
3125
.apdisk
3226

33-
### macOS Patch ###
34-
# iCloud generated files
35-
*.icloud
36-
37-
### Rust ###
3827
# Generated by Cargo
3928
# will have compiled files and executables
40-
debug/
41-
target/
42-
43-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
44-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
45-
# Cargo.lock
29+
debug
30+
target
4631

4732
# These are backup files generated by rustfmt
4833
**/*.rs.bk
4934

5035
# MSVC Windows builds of rustc generate these, which store debugging information
5136
*.pdb
5237

53-
### VisualStudioCode ###
38+
# Generated by cargo mutants
39+
# Contains mutation testing data
40+
**/mutants.out*/
41+
42+
# RustRover
43+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
44+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
45+
# and can be added to the global gitignore or merged into this file. For a more nuclear
46+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
47+
#.idea/
48+
49+
Cargo.lock
50+
5451
.vscode/*
5552
!.vscode/settings.json
5653
!.vscode/tasks.json
5754
!.vscode/launch.json
5855
!.vscode/extensions.json
5956
!.vscode/*.code-snippets
60-
61-
# Local History for Visual Studio Code
62-
.history/
57+
!*.code-workspace
6358

6459
# Built Visual Studio Code Extensions
6560
*.vsix
66-
67-
### VisualStudioCode Patch ###
68-
# Ignore all local history of files
69-
.history
70-
.ionide
71-
72-
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,rust
73-
74-
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
75-
tmp/

0 commit comments

Comments
 (0)