Performance is one reason to use Rust, but it's not the only one. It enforces correctness at compile-time, eliminating a ton of easy-to-miss bugs. If your application is multi-threaded, it also enforces guarantees about thread safety, eliminating another class of bugs. If you care about correctness, that is another reason to use Rust.