-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move diplomacy to standalone library absorbing aop
Splits out the aop and diplomacy modules into a standalone library. Adds the new library as a dependency and updates the in-tree diplomacy and aop modules to reference the new library with deprecation warnings.
- Loading branch information
1 parent
49e7d27
commit f21658b
Showing
17 changed files
with
1,019 additions
and
3,444 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 @@ | ||
0.11.7 |
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,32 @@ | ||
version = 3.7.17 | ||
runner.dialect = scala213 | ||
|
||
maxColumn = 120 | ||
align.preset = most | ||
continuationIndent.defnSite = 2 | ||
assumeStandardLibraryStripMargin = true | ||
docstrings.style = SpaceAsterisk | ||
lineEndings = preserve | ||
includeCurlyBraceInSelectChains = false | ||
danglingParentheses.preset = true | ||
|
||
align.tokens."+" = [ | ||
{ | ||
code = ":" | ||
} | ||
] | ||
|
||
newlines.beforeCurlyLambdaParams = never | ||
newlines.beforeMultiline = fold | ||
newlines.implicitParamListModifierForce = [before] | ||
|
||
verticalMultiline.atDefnSite = true | ||
|
||
optIn.annotationNewlines = true | ||
|
||
rewrite.rules = [SortImports, PreferCurlyFors, AvoidInfix] | ||
fileOverride { | ||
"glob:**/common.sc/**" { | ||
runner.dialect = scala3 | ||
} | ||
} |
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 was deleted.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package freechips.rocketchip | ||
|
||
object aop { | ||
@deprecated("aop has moved to the standalone diplomacy library.", "rocketchip 2.0.0") | ||
val Select = _root_.org.chipsalliance.diplomacy.aop.Select | ||
} |
Oops, something went wrong.