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!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
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>
305: Add a subscription stress test r=koivunej a=ljedrz
`#[ignore]`d by default; it currently works pretty well for a reasonable amount of time.
309: make the retrying loop in wantlist_cancellation less busy r=koivunej a=ljedrz
This might help the rare errors thrown by the `bounded_retry` test function that might be a bit too busy at times.
Also, reduce the delay for `timeout(duration, pending::<()>())` calls and increase the one for `bounded_retry` ones.
Co-authored-by: ljedrz <ljedrz@gmail.com>
308: cargo update; remove unused rand feature r=koivunej a=ljedrz
Just a maintenance update to `Cargo.lock` via `cargo update` so that actual later dependency additions or deletions don't cause unrelated changes to it.
Co-authored-by: ljedrz <ljedrz@gmail.com>
307: Use tokio instead of async_std r=koivunej a=ljedrz
We already use it in `ipfs-http`, our dependencies either already use it or are compatible with it and it has some nice features that we'd like to use.
Note: the `async` tests now specify `max_threads = 1` in order to make sure the multi-threaded executor is not being lenient about any hidden bugs.
fixes https://github.com/rs-ipfs/rust-ipfs/issues/275
Co-authored-by: ljedrz <ljedrz@gmail.com>
306: Cleanup old unixfs api r=koivunej a=koivunej
This removes the previous API of:
* ipfs::Ipfs::add
* ipfs::ipfs::get
* ipfs::unixfs::File
Rationale for the removal is that ipfs-unixfs (under `unixfs/`, re-exported as `ipfs::unixfs::ll`) provides ability to do the similar use cases more or less. It does not however, provide means to have a nice api and persist stuff in an async way which is something we are lacking at the moment. I will probably file an issue for this API deficiency once I am through this.
Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>
there was a discrepency with the old and new way which took some time to
realize. if this destroys anyones workflow I hope we can find a way to
accomondiate you :)
300: use noise authentication with the XX handshake r=koivunej a=ljedrz
The new `0.23` release of `libp2p` seems to have fixed the `noise` incompatibility issues with `go-ipfs`, so update it, drop `SECIO` and use `noise-xx` instead.
While I've successfully tested this both ways against a `go-ipfs-0.6` node, an extra manual test won't hurt 😉.
fixes https://github.com/rs-ipfs/rust-ipfs/issues/75
fixes https://github.com/rs-ipfs/rust-ipfs/issues/175
Co-authored-by: ljedrz <ljedrz@gmail.com>
304: Work around the rare zero wakers CI failure r=koivunej a=ljedrz
As far as I can tell this only happens to Kademlia queries and thus might be a `libp2p` bug; disable the sanity debug check for them to verify it.
Also, remove an outdated comment as a drive-by.
Co-authored-by: ljedrz <ljedrz@gmail.com>