Skip to content

Commit

Permalink
removed unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
ddavidd23 committed Jul 26, 2024
0 parents commit d1ae864
Show file tree
Hide file tree
Showing 9 changed files with 560 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'proj3'",
"cargo": {
"args": [
"build",
"--bin=proj3",
"--package=proj3"
],
"filter": {
"name": "proj3",
"kind": "bin"
}
},
"args": ["in.txt"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'proj3'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=proj3",
"--package=proj3"
],
"filter": {
"name": "proj3",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"rust-analyzer.inlayHints.typeHints.enable": false,
"editor.inlayHints.enabled": "offUnlessPressed"
}
7 changes: 7 additions & 0 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "proj3"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# RustParser

A macro processor with TeX-style parsing rules.
Binary file added src/.main.rs.swp
Binary file not shown.
Loading

0 comments on commit d1ae864

Please sign in to comment.