Skip to content

Commit 9b8367c

Browse files
committed
Update workspace dependencies with local macro crate for the new parser module
Modifies the root `Cargo.toml` to officially include the new `compiler-macros` crate as a workspace member. Dependencies are updated across the workspace, and the `Cargo.lock` file is regenerated to reflect the new state of the project. This prepares the build system for the introduction of the core parser module. The `.gitignore` is also updated for new build artifacts.
1 parent 9b79af0 commit 9b8367c

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.clippy.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
allow-expect-in-tests = true
2+
allow-unwrap-in-tests = true

.gitignore

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
/target
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
**/debug
4+
**/target
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk
8+
9+
# MSVC Windows builds of rustc generate these, which store debugging information
10+
*.pdb
11+
12+
# Generated by cargo mutants
13+
# Contains mutation testing data
14+
**/mutants.out*/
15+
16+
.cov

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
stable
1+
stable

0 commit comments

Comments
 (0)