From 0aefd5bef5dc6a66ceb113bb263813adddecfc6c Mon Sep 17 00:00:00 2001 From: yaziciahmet Date: Tue, 8 Oct 2024 09:59:14 +0200 Subject: [PATCH] Remove unused dep --- Cargo.toml | 1 - Makefile | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0e2052b..f9557b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,6 @@ log = "0.4" rand = "0.8" serde = { version = "1.0.192", default-features = false, features = ["alloc", "derive"] } serde_json = { version = "1.0", default-features = false } -syn = { version = "1.0", features = ["full", "extra-traits"] } tempfile = "3.8" tokio = { version = "1.39", features = ["full"] } toml = "0.8.0" diff --git a/Makefile b/Makefile index 8d63166..7ff3079 100644 --- a/Makefile +++ b/Makefile @@ -29,14 +29,13 @@ lint: ## cargo check and clippy. Skip clippy on guest code since it's not suppo dprint check cargo +nightly fmt --all --check cargo check --all-targets --all-features - $(MAKE) check-fuzz - SKIP_GUEST_BUILD=1 cargo clippy --all-targets --all-features + cargo clippy --all-targets --all-features lint-fix: ## dprint fmt, cargo fmt, fix and clippy. Skip clippy on guest code since it's not supported by risc0 dprint fmt cargo +nightly fmt --all cargo fix --allow-dirty - SKIP_GUEST_BUILD=1 cargo clippy --fix --allow-dirty + cargo clippy --fix --allow-dirty docs: ## Generates documentation locally cargo doc --open