
Makefile for formatting and linting Workspace for subcrates. Moved crates to subdir and moved subcrate configs to workspace.*
14 lines
229 B
TOML
14 lines
229 B
TOML
[package]
|
|
name = "read-files"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
regex = "1.10.5"
|