-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dual 514-515 compat (+ reformatting) (#85)
- Loading branch information
Showing
56 changed files
with
828 additions
and
1,106 deletions.
There are no files selected for viewing
File renamed without changes.
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 +1,40 @@ | ||
edition = "2021" | ||
hard_tabs = true | ||
fn_params_layout = "Tall" | ||
force_explicit_abi = true | ||
match_block_trailing_comma = false | ||
max_width = 150 | ||
merge_derives = true | ||
newline_style = "Unix" | ||
remove_nested_parens = true | ||
reorder_imports = true | ||
reorder_modules = true | ||
use_field_init_shorthand = true | ||
use_small_heuristics = "Default" | ||
# Unstable formatting options below; remove if you REALLY don't wanna use `cargo +nightly fmt` | ||
unstable_features = true | ||
binop_separator = "Front" | ||
brace_style = "SameLineWhere" | ||
condense_wildcard_suffixes = true | ||
control_brace_style = "AlwaysSameLine" | ||
empty_item_single_line = true | ||
format_code_in_doc_comments = true | ||
format_macro_bodies = true | ||
format_macro_matchers = true | ||
format_strings = true | ||
group_imports = "Preserve" | ||
imports_granularity = "Crate" | ||
imports_indent = "Block" | ||
imports_layout = "Mixed" | ||
indent_style = "Block" | ||
match_arm_blocks = true | ||
normalize_comments = true | ||
overflow_delimited_expr = true | ||
reorder_impl_items = true | ||
space_after_colon = true | ||
space_before_colon = false | ||
spaces_around_ranges = false | ||
trailing_comma = "Never" | ||
trailing_semicolon = true | ||
type_punctuation_density = "Wide" | ||
wrap_comments = true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,14 +1,14 @@ | ||
[workspace] | ||
members = [ | ||
"auxcov", | ||
"auxtools", | ||
"auxtools-impl", | ||
"debug_server", | ||
"instruction_hooking", | ||
"tests/auxtest", | ||
"tests/byond_get", | ||
"tests/test_runner", | ||
] | ||
members = ["auxcov", "auxtools", "auxtools-impl", "debug_server", "instruction_hooking", "tests/auxtest", "tests/byond_get", "tests/test_runner"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Sophie Wallace <[email protected]>", "Lucy <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/wilox/auxtools" | ||
rust-version = "1.76" | ||
version = "0.1.0" | ||
|
||
[profile.release] | ||
opt-level = 3 | ||
|
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 |
---|---|---|
|
@@ -2,8 +2,11 @@ | |
name = "auxcov" | ||
version = "1.0.0" | ||
authors = ["Jordan Dominion <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib", "lib"] | ||
|
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
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 |
---|---|---|
|
@@ -2,10 +2,11 @@ | |
name = "auxtools-impl" | ||
description = "procedural macros for use with the auxtools crate" | ||
version = "0.1.0" | ||
authors = ["Aspen <[email protected]>", "Sophie Wallace <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/willox/auxtools" | ||
edition = "2018" | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
proc-macro = true | ||
|
Oops, something went wrong.