Skip to content

Commit 0aefd5b

Browse files
committed
Remove unused dep
1 parent 0583e15 commit 0aefd5b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ log = "0.4"
1717
rand = "0.8"
1818
serde = { version = "1.0.192", default-features = false, features = ["alloc", "derive"] }
1919
serde_json = { version = "1.0", default-features = false }
20-
syn = { version = "1.0", features = ["full", "extra-traits"] }
2120
tempfile = "3.8"
2221
tokio = { version = "1.39", features = ["full"] }
2322
toml = "0.8.0"

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ lint: ## cargo check and clippy. Skip clippy on guest code since it's not suppo
2929
dprint check
3030
cargo +nightly fmt --all --check
3131
cargo check --all-targets --all-features
32-
$(MAKE) check-fuzz
33-
SKIP_GUEST_BUILD=1 cargo clippy --all-targets --all-features
32+
cargo clippy --all-targets --all-features
3433

3534
lint-fix: ## dprint fmt, cargo fmt, fix and clippy. Skip clippy on guest code since it's not supported by risc0
3635
dprint fmt
3736
cargo +nightly fmt --all
3837
cargo fix --allow-dirty
39-
SKIP_GUEST_BUILD=1 cargo clippy --fix --allow-dirty
38+
cargo clippy --fix --allow-dirty
4039

4140
docs: ## Generates documentation locally
4241
cargo doc --open

0 commit comments

Comments
 (0)