horacimacias
horacimacias
for logging, wouldn't it be possible to also support logging via a custom script so at least people using custom deployers can use a custom logging script? Similar thing for...
@liufuyang I had a similar `super::super` issue when using compile_well_known_types. I checked your bigtable_rs and I think you have several issues: 1) when you use `compile_well_known_types` you're basically not getting...
@onx2 similar thing for you, I believe this error with the option turned on: ```rust pub created_at: ::core::option::Option, | ^^^^^^ could not find `google` in `super` ``` is caused by...
I'm having the same issue; did you ever find a workaround/fix for this?
...as a workaround, I know I can `collect()` the iterator and check if it's empty, but if possible I'd like to avoid it as often the iterator is not empty...
Thanks. I don't think it's panicking, but it is resulting on an error for sure. I'm just starting with sea-orm so I was a bit confused by this. I'm not...
sorry, why would a no-op be a bad thing here? Whenever we're looping over an Iterator that happens to be empty, the loop just does nothing. ```rust let items :...
I'm not sure how releases are being produced and uploaded to github but here's what I did manually and I think can be used. 1. Download the release tgz 2....
I don't really mind; I actually like both :) Is there any reason for the dark blue pencil border on @BafS proposal not to "reach" the icon big circle?
I was also a bit confused by this. Perhaps there is still value in explicitly calling `assert` but definitely calling it on Drop seems definitely desirable; it's a mock object...