Skip to content

Commit

Permalink
silence a warning in the loader module about an unused macro
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Mar 22, 2022
1 parent 7c3601b commit b50dbf0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion loader/curve25519-dalek-loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ optional = true

[dependencies.engine25519-as]
git = "https://github.com/betrusted-io/engine25519-as.git"
rev = "274b82899d28535ac6d4b7869e26eef2039578d5"
rev = "d249c967556b02ab5439eacb5078fa00c60b93d6"
default-features = false
features = []
optional = true
Expand Down
2 changes: 2 additions & 0 deletions loader/curve25519-dalek-loader/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
// https://github.com/rust-analyzer/rust-analyzer/issues/8640
#![recursion_limit="512"]

#![allow(unused_macros)] // quiets an unused macro error imported from engine25519-as. It can't be quieted by just suppressing it in the source library.

//------------------------------------------------------------------------
// External dependencies:
//------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion services/engine-25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rkyv = {version = "0.4.3", default-features = false, features = ["const_generics

[dependencies.engine25519-as]
git="https://github.com/betrusted-io/engine25519-as.git"
rev="274b82899d28535ac6d4b7869e26eef2039578d5"
rev="d249c967556b02ab5439eacb5078fa00c60b93d6"
default-features = false
features = []

Expand Down

0 comments on commit b50dbf0

Please sign in to comment.