Conversation
|
thank you! i like the i am not familiar with the tag search API (it didn't exist back then) so i dont know much about the |
Thank you! That works for me
It looks like it uses the same code path as the posts endpoint, so the Lines 388 to 392 in 236bac4 |
|
I'm happy with where this is now. Let me know what you think! |
src/client.rs
Outdated
| Self::Page(p) => write!(f, "{}", p), | ||
| Self::Before(p) => write!(f, "b{}", p), | ||
| Self::After(p) => write!(f, "a{}", p), |
There was a problem hiding this comment.
| Self::Page(p) => write!(f, "{}", p), | |
| Self::Before(p) => write!(f, "b{}", p), | |
| Self::After(p) => write!(f, "a{}", p), | |
| Self::Page(p) => write!(f, "{p}"), | |
| Self::Before(p) => write!(f, "b{p}"), | |
| Self::After(p) => write!(f, "a{p}"), |
There was a problem hiding this comment.
Should I also add rust-version = "1.58" to Cargo.toml?
There was a problem hiding this comment.
oh maybe, i didn't check what the msrv is
There was a problem hiding this comment.
Looks like it'd be around 1.70 because of some dependencies.
|
I've added |
Here's my attempt at adding support for tags. It isn't entirely complete yet, but I wanted to get your opinion before moving forward.
I've gone with a builder pattern for
tags::Query, but differently thanPoolSearch. If you like it, I can update everything to the same style.Outstanding Tasks:
Cursorlogictags::Query(and everything else.)