Skip to content

Commit

Permalink
Merge pull request #56 from earth-mover/seba/linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci authored Sep 10, 2024
2 parents 3d5141e + 7e1e7e8 commit df94aba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[workspace]
members = [
"icechunk",
"icechunk-python"
]
members = ["icechunk", "icechunk-python"]
default-members = ["icechunk"]
resolver = "2"
resolver = "2"

[workspace.lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
panic = "warn"

[profile.release-with-debug]
inherits = "release"
debug = true

9 changes: 0 additions & 9 deletions icechunk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ base32 = "0.5.1"
chrono = { version = "0.4.38", features = ["serde"] }
async-recursion = "1.1.1"

[profile.release-with-debug]
inherits = "release"
debug = true

[dev-dependencies]
pretty_assertions = "1.4.0"
proptest-state-machine = "0.3.0"

[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
panic = "warn"

0 comments on commit df94aba

Please sign in to comment.