Yash

Results 20 comments of Yash

Rust Client won't support interpolation through client. Try something like this. ```rust format!("select "{}", "300h") ```

At this point using requests lib with direct URL makes more sense!

Thanks for the reply. ```rust let timezone = timezones::get_by_name("America/New_York").unwrap(); let d = OffsetDateTime::now_utc(); let dt= PrimitiveDateTime::new(d.date(), d.time()).assume_timezone_utc(timezone); let offset = dt.offset(); // -4.00 CORRECT ``` What is the cleanest way...

Thanks for your help and your wonderful library :) ```rust // Accepted for now let timezone = timezones::get_by_name("America/New_York").unwrap(); let d = OffsetDateTime::now_utc().to_timezone(timezone); // Expected may be like a feature //...

_By the way, why don't you use the timezone types directly?_ - Timezone is saved in DB. It's a string. ```rust // I agree that None can be produced based...

```rust time-tz= { git = "https://github.com/Yuri6037/time-tz", version = "3.0.0-rc.1.0.0", features = ["db_impl"] } //had to include ToTimezone and db_impl is required for Tz use time_tz::{ToTimezone, timezones, TimeZone, Offset, Tz}; ```...

any update? Its very critial for scalability.

I solved by moving my code from routeLoader$(index/route) to Task$ inside component. I still consider it as bug in routeLoader$ which failed to collect all required fn for final build.

Your results are not matching with the current official claim. I have no idea how but it should be fixed. You may ask Elysia to check it. https://github.com/elysiajs/elysia/issues/229