An open API service indexing awesome lists of open source software.

https://github.com/baoyachi/rust_is_debug

The crate by Rust that get build model is debug.
https://github.com/baoyachi/rust_is_debug

Last synced: about 1 month ago
JSON representation

The crate by Rust that get build model is debug.

Awesome Lists containing this project

README

        

# is_debug
The crate by Rust that get build model is debug.

### use function
```TOML
[dependencies]
is_debug = "1"
```

```rust
use is_debug::{is_debug, is_release};

fn main() {
println!("{}", is_debug());

println!("{}", is_release());
}
```