IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an
email to Administrator. User accounts are meant only to access repo
and report issues and/or generate pull requests.
This is a purpose-specific Git hosting for
BaseALT
projects. Thank you for your understanding!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
314: Use instrument instead of in_scope in lib r=koivunej a=ljedrz
Apparently `Span::in_scope` is just:
```
pub fn in_scope<F: FnOnce() -> T, T>(&self, f: F) -> T {
let _enter = self.enter();
f()
}
```
and `Span::enter` is a no-no in `async` contexts.
Co-authored-by: ljedrz <ljedrz@gmail.com>
110: add: p2p suffixes to multiaddrs from identify r=koivunej a=koivunej
not verified but indirectly used by the conformance tests when dialing a peer with an expected peerid.
Not 100% sure if this should be done, at least long as #105 is done at least to accept the multiaddrs with `/p2p/`.
Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>
Co-authored-by: ljedrz <ljedrz@gmail.com>
313: Prepare unixfs release v0.1.0 r=koivunej a=koivunej
Per semver the next must be a minor bump at least. While I don't have a concrete path forward to 1.0 in mind for this crate I am sure we'll be doing smaller bits and bobs soon as we approach a rust-ipfs release as well.
Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>
Co-authored-by: Joonas Koivunen <joonas.koivunen@gmail.com>
302: feat: unixfs symlink creation r=koivunej a=koivunej
The minimal API and perhaps too verbose test cases around the feature. While I did check the cids to match some go-ipfs version cids, I think there might still be corner cases around even this very minimal API.
Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>
312: More maintenance r=koivunej a=ljedrz
I decided to take a closer look on the features enabled in our dependencies and to the deps themselves and found a few more bits to tweak. Always nice to see some red in `Cargo.lock`.
Co-authored-by: ljedrz <ljedrz@gmail.com>
311: Remove unneccesary Jekyll file r=koivunej a=aphelionz
This PR removes the _config.yml file, which is not needed since the website content lives in other repos.
Co-authored-by: Mark Robert Henderson <henderson.mark@gmail.com>
310: doc: update contributing, minimal patches r=ljedrz a=koivunej
I think the build time should become apparent right away for anyone trying to develop, at least when GHA tries it.
Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>