Skip to content

Commit

Permalink
feat/lint: enforce dependency related lints
Browse files Browse the repository at this point in the history
Signed-off-by: Bernhard Schuster <bernhard@ahoi.io>
  • Loading branch information
drahnr committed Jul 5, 2023
1 parent da0e9e9 commit b87d34b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions orchestra/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ anyhow = { version = "1", optional = true }

[dev-dependencies]
assert_matches = "1.5"
orchestra = { path = "../" }
thiserror = "1"
tracing = "0.1"

[features]
default = ["dotgraph"]
Expand Down
3 changes: 3 additions & 0 deletions orchestra/proc-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(clippy::all)]
#![deny(unused_crate_dependencies)]
#![deny(unused_imports)]
#![deny(unused_import_braces)]

use proc_macro2::{Ident, Span, TokenStream};
use syn::{parse_quote, spanned::Spanned, Path};
Expand Down

0 comments on commit b87d34b

Please sign in to comment.