Skip to content

Commit

Permalink
chore: add clippy rules (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyxu authored Dec 4, 2024
1 parent f810267 commit acf475c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ocra"
version = "0.1.0"
authors = ["[email protected]"]
repository = "https://github.com/lancedb/ocra"
description = "OCRA: A Rust implementation of Cache in arrow-rs' ObjectStore interface"
edition = "2021"
license-file = "LICENSE"
Expand All @@ -28,3 +29,10 @@ rand = "~0.8"
[[bench]]
name = "memory"
harness = false

[lints.clippy]
all = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
multiple-crate-versions = "allow"

0 comments on commit acf475c

Please sign in to comment.