Hello. Eveyone.
I cloned Chrono to benchmark it using 'git clone GitHub - chronotope/chrono: Date and time library for Rust', but the result is as follows.
Does anyone know why the benchmark is not running?
Thank you.
Hello. Eveyone.
I cloned Chrono to benchmark it using 'git clone GitHub - chronotope/chrono: Date and time library for Rust', but the result is as follows.
Does anyone know why the benchmark is not running?
Thank you.
Chrono needs the __internal_bench
feature enabled to run benchmarks. Someone more knowledgeable about rust benchmarking might be able to explain why, but to get them to run you need to enable that feature
cargo bench --features=__internal_bench
or you probably want to just enable all the features
cargo bench --all-features
Thank you very much for your help!
The issue has been resolved!
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.