-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- This pull request fixes workspace inheriting: #34 - Introduces a `rustfmt` check and configuration - Bumps MSRV to `1.66.0` and introduces a check for it in CI - Removes `once_cell` as it isn't required anymore - Bumps all the deps
- Loading branch information
Showing
10 changed files
with
287 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Basic | ||
edition = "2021" | ||
max_width = 100 | ||
use_small_heuristics = "Max" | ||
# Imports | ||
imports_granularity = "Crate" | ||
reorder_imports = true | ||
# Consistency | ||
newline_style = "Unix" | ||
# Misc | ||
chain_width = 80 | ||
spaces_around_ranges = false | ||
binop_separator = "Back" | ||
reorder_impl_items = false | ||
match_arm_leading_pipes = "Preserve" | ||
match_arm_blocks = false | ||
match_block_trailing_comma = true | ||
trailing_comma = "Vertical" | ||
trailing_semicolon = false | ||
use_field_init_shorthand = true | ||
# Format comments | ||
comment_width = 100 | ||
wrap_comments = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "proc-macro-crate" | ||
version = "1.3.1" | ||
version = "2.0.0" | ||
authors = ["Bastian Köcher <[email protected]>"] | ||
edition = "2021" | ||
categories = ["development-tools::procedural-macro-helpers"] | ||
|
@@ -12,13 +12,12 @@ description = """ | |
Replacement for crate (macro_rules keyword) in proc-macros | ||
""" | ||
readme = "./README.md" | ||
rust-version = "1.60.0" | ||
rust-version = "1.66.0" | ||
|
||
[dependencies] | ||
toml_edit = "0.19" | ||
once_cell = "1.13.0" | ||
toml_edit = "0.20.2" | ||
|
||
[dev-dependencies] | ||
quote = "1.0.7" | ||
syn = "1.0.33" | ||
proc-macro2 = "1.0.18" | ||
quote = "1.0.33" | ||
syn = "2.0.37" | ||
proc-macro2 = "1.0.67" |
Oops, something went wrong.