I am trying to run cargo-instruments via: ```sh cargo instruments -t alloc ``` When I do, everything seems to run: ```sh Finished dev [unoptimized + debuginfo] target(s) in 1.45s Profiling target/debug/tmp-exp-01 with template 'Allocations' ``` and I see a new `.trace` file generated in `./target/instruments`, but if I try to open the file, Instruments fails with the error: ``` The document “tmp-exp-01_Allocations_2023-07-21_162620-077.trace” could not be opened. Document Missing Template Error ``` I'm using: Instruments: Version 14.3.1 (14E300c) cargo-instruments: 0.4.8 rustc: 1.70.0 Any ideas what might be going on? Thanks!