incker
incker
Is it possible to connect using url? Like `psql://user:pass@host/db`
Code: let num1 = BigDecimal::from_str("1.000").unwrap(); let num2 = BigDecimal::try_from(1.0f64).unwrap(); println!("{}", num1.to_string()); println!("{}", num2.to_string()); Output: 1.000 1.000000000000000 The question is how to make string from BigDecimal without trailing zeros Thank you
I want to ask why you have non sync operation from `fs` like `write_all` `read_to_string` Looks like you need use `tokio::fs` Or if it is ok, can you please tell...
Hello Error is rather clear. utoipa wants my routs be functions only. Let this issue be a feature request If you have any good solution how to solve this error...
I have found a pretty usefull thing like use warp::Filter; // If using something like `pretty_env_logger`, // view logs by setting `RUST_LOG=example::api`. let log = warp::log("example::api"); let route = warp::any()...
Hello! I have noticed that writer `FileLogWriter` can not `duplicate_to_stderr/out` Is there an easy way to print to console msgs from writer? Forward thank you!
Hello! It is more a question. Is there a good way to keep sensitive data in binary? Forward thank you!