Ricky
Ricky
Is there any testing that covers the subset merger or `add-ds-subsets` subcommand for me to hook into, and/or what would you like to see tested of this PR? I've used...
Yes, that could be good. I'll take a look at making a special case for `org/repo@latest` (bikeshedding welcome)
Fun niggle: using the GitHub API for the zipball download link downloads a zip that has the inner top-level folder named with a completely different convention to usual Normally, it's...
@simoncozens (or @m4rc1e) any going concerns that'd prevent this PR from getting merged soon? I think it's in a good state; just updated the original post description to reflect the...
What do you mean by ignore cfgs sorry, like don't touch them with the proc macro and let them get handled later or something? That sounds fine to me. The...
I think I've just found the intended way of doing this: using `Any::encode_from`. I guess this is a separate method because it allowed specialised impls of `From/TryFrom` with `AnyRef`?
> I think explicit conversion should be preferred here, Then why do some asn1 types allow the 'implicit' conversion? I wouldn't mind if everything was explicit, my confusion arose because...
So we can't `impl From for AnyRef`. Could we `impl From for Any` (owned type to owned type) or `impl From for Any` (borrowed type to owned type)?