LukeMathWalker / wiremock-rs

HTTP mocking to test Rust applications.
Apache License 2.0
607 stars 69 forks source link

Remove Cargo.lock file #103

Closed MarcoIeni closed 1 year ago

MarcoIeni commented 1 year ago

Wiremock is a library. And libraries shouldn't commit Cargo.lock, right?

LukeMathWalker commented 1 year ago

It helps to avoid committing the lock file in order to test against the latest version of your deps. We don't have a tool yet to test against the minimal allowed version, which would be equally valuable.

Happy to merge this though!