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!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
does not at all pass any tests. we need to add a root path param, which
will be a string version of the requested Cid for the http api. Also,
with this, it becomes possible to hide everything (files, symlinks)
under a single walk api.
this was a curious bug: to pass the test on interface-ipfs-core we need
to be still loading the first block and we must not be on the stream
phase. apparently the http cancellation works differently depending on
whether any response headers have been sent or not as the test fails if
the headers and cancelled error is sent.
the issue of returning either an loaded raw block or possibly projected
Ipld value was solved by introducing yet another enum Loaded. I did
consider `Either` from crate either, and `Result<Box<[u8]>, Ipld>` but
the custom enum at least allows us to write a documentation story what
the alternatives represent.
not exactly sure how critical this is, but all of the thinking which was
done for "is this Stream impl ok" was based on the assumption that the
Unshared value was Send, as it was but this was never added as a bound.
Adding list to BlockStore trait and cleanup support
Adding list functionality and tests
wip dag put
Update Cargo.toml
Co-Authored-By: Joonas Koivunen <joonas.koivunen@gmail.com>
Delete config
fix: switching back to Vecs
feat: adding list functions to repo and ipfs
feat: working endpoint
fix: more sane newline adding
fix: clippy
fix: cargo fmt
wip: block.rm
cargo fmt
Delete refs.rs
Update lib.rs
Update fs.rs
Update v0.rs
Update v0.rs
Update fs.rs
Update mod.rs
Update mem.rs
Update mem.rs
WIP
fix: removing to_owned
WIP: Got it working but need to implement unshared and then clean up
WIP: Compiling, but empty results probably due to clone
fix: cargo fmt
feat: new result enums and implementation
fix: cargo fmt
wip: 5/8 passing tests, need options and cid in errors
wip: PR comments
fix: last test passing 🎉
fix: cargo fmt
fix: clippy and fmt
chore: socializing things
fix: adding support folder
fix: redundant clone
chore: move HandledErr
chore: fmt and TODO removal
fix: clippy
fix: cargo fmt and clippy
chore: moving to block/options.rs
fix: otiginal Cid
fix: tests
fix: clippy tests
the test case expected mixed cidv0 and cidv1... I didn't see it coming,
and it's quite unfortunate that we cannot support both, but at the same
time I think the end result is ok.