Drew McArthur

Results 45 comments of Drew McArthur

so i think i see what my next steps towards this are - i opened up a draft pr, #49 , which basically just creates some files. i also started...

@thelastjosh hi! sorry i have a conflicting recurring meeting at that time, unfortunately. latest status is commented on the PR, i believe the code is done but i'm not sure...

i'm curious about implementing a PDS in rust - from what i can tell, your client library is constructed by parsing the atproto lexicon and generating code that makes http...

i had the same idea with https://github.com/DrewMcArthur/atproto-lexicon-ts, see if that's helpful @dholms @devsnek

although, the generated files in this repo are not the same as what's generated by the current `atproto` repo's lexicon, not sure if this is a branch ahead or what...

update: I was able to update my function to return a `Box`, which covers both the GZipped case (returning a `GzipDecoder: AsyncRead`) and the plain filestream from S3 (returning an...

thank you @robjtede and @link2xt !! 😄

If #3387 is the root cause here, I've opened up #3400 as a draft for a fix.

hm. so i see on [line 170 of that file](https://github.com/launchbadge/sqlx/blob/cc481827d948c25b91c079dd02b534c53730efda/sqlx-mysql/src/protocol/text/column.rs#L170C9-L170C61) ``` let is_binary = flags.contains(ColumnFlags::BINARY); ``` but I don't think this is necessarily correct - based on [12.8.5 of the...

@alu from your [comment](https://github.com/launchbadge/sqlx/issues/3390#issuecomment-2257499701) on #3390, > It seems to work as expected if BINARY is also accepted by [compatible](https://github.com/launchbadge/sqlx/blob/main/sqlx-mysql/src/types/str.rs#L31) I think this is the source of the issue for...