derust 0.2.6

Easy way to start your Rust asynchronous application server using Tokio and Axum frameworks.
Documentation
# derust - trace

[Example](https://github.com/deroldo/derust/tree/main/examples/trace)

```toml
# Cargo.toml

[package]
# ...

[dependencies]
derust = { version = "0.2.1" }

# ...
```

```rust
// main.rs

// ...
use derust::tracex;
use derust::tracex::log::info;
// ...

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // automatic log subscribe and add b3 traceparent
    let _guard = tracex::init();
    
    // start as the basic 
    // ... 
}

async fn handler(
    State(context): State<AppContext<AppState>>,
    // automatic add tags into log
) -> Result<JsonResponse, HttpError> {
    // ...
    
    // tags to be added into log
    let tags = HttpTags::from([("customer_id", customer_id)]);
    
    // automatic add tags into log
    info("Request handler", &tags);
    
    // ...
}
```