Patch matches, mach

This commit is contained in:
Luke Parker
2023-12-15 15:10:54 -05:00
parent 9f7140c3db
commit 890b70212a
6 changed files with 49 additions and 4 deletions

View File

@@ -69,8 +69,10 @@ members = [
"tests/reproducible-runtime",
"patches/is-terminal",
"patches/matches",
"patches/option-ext",
"patches/directories-next",
"patches/mach",
]
# Always compile Monero (and a variety of dependencies) with optimizations due
@@ -102,6 +104,8 @@ dockertest = { git = "https://github.com/kayabaNerve/dockertest-rs", branch = "a
# is-terminal now has an std-based solution with an equivalent API
is-terminal = { path = "patches/is-terminal" }
# So does matches
matches = { path = "patches/matches" }
# directories-next was created because directories was unmaintained
# directories-next is now unmaintained while directories is maintained
@@ -111,6 +115,9 @@ is-terminal = { path = "patches/is-terminal" }
option-ext = { path = "patches/option-ext" }
directories-next = { path = "patches/directories-next" }
# mach is unmaintained, so this wraps mach2 as mach
mach = { path = "patches/mach" }
[workspace.lints.clippy]
unwrap_or_default = "allow"
borrow_as_ptr = "deny"