oscartbeaumont / rspc

A framework for building typesafe web backends in Rust
https://rspc.dev
MIT License
1.11k stars 51 forks source link

deps: use `tempfile` instead of `tempdir` #157

Closed brxken128 closed 1 year ago

brxken128 commented 1 year ago

The tempdir crate has been unmaintained for years, and it's using a vulnerable version of remove_dir_all (source).

This PR replaces tempdir with tempfile, which means that cargo audit is a little happier. There's still time v0.1.45 in the tree, but that's due to chrono and there's not much we can do there aside from wait for a new release (unless we completely drop support for it).

vercel[bot] commented 1 year ago

Someone is attempting to deploy a commit to a Personal Account owned by @oscartbeaumont on Vercel.

@oscartbeaumont first needs to authorize it.

brxken128 commented 1 year ago

Closing in favour of #158.