-
Couldn't load subscription status.
- Fork 73
Description
Hello,
I am using Extractous version 0.3.0 in my Rust application. When I build and run my application in debug mode using the following commands, everything works correctly:
cargo build
cargo run
However, when I build the application in release mode with the following command:
cargo build --release
And then run the resulting executable, it does nothing. There is no output, no error, and no logs. It seems like the application is not starting at all.
Steps to Reproduce
- Add extractous = "0.3.0" to Cargo.toml.
- Implement basic usage of extractous in the application.
- Run cargo build and cargo run -> Works fine.
- Run cargo build --release -> Executable does nothing when run.
Expected Behavior
The release build should behave the same as the debug build.
Actual Behavior
Release build executable does nothing, with no output or errors.
Environment
- OS: Windows 11
- Rust Version: 1.84.1
- Extractous Version: 0.3.0
Are there any known issues or additional configurations required for cargo build --release with Extractous? How can I diagnose this issue further?
Thank you for your support!