marine-rs-sdk icon indicating copy to clipboard operation
marine-rs-sdk copied to clipboard

Rust backend sdk for the Fluence network

Results 25 marine-rs-sdk issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [stefanzweifel/git-auto-commit-action](https://togithub.com/stefanzweifel/git-auto-commit-action) | action | major | `v4` -> `v5` | ---...

This is a moved issue from https://github.com/fluencelabs/marine/issues/107

The `#[marine]` macro can't be applied to a generic import or export function, it's prohibited due to some limitations in the internal type resolving mechanism. After it refactoring support of...

At the moment sdk doesn't support boxed types such as `Box`, `Rc`, and etc in arguments, but DX will improve dramatically with their support. This issue is related to https://github.com/fluencelabs/marine/issues/102.

``` [profile.dev] opt-level = 3 lto = 'thin' [profile.release] lto = 'thin' ``` Build service and run marine test using aboce config - test passes. Build service and run marine...

``` error: At now, #[marine] could be applied only to a function, extern block or struct 22 | pub const MESSAGE_TYPE_USER: &str = "user"; ``` so these are reused in...

To share files between services, developers need to know the path to particle file vault. Currently it's done manually, like this ```rust fn vault_path() -> PathBuf { let particle_id =...

Consider this use-case: ``` /tmp => /.fluence/v1/services/workdir/5c911af0-0e22-4a6c-bdd2-c6a376e2cf69/tmp /tmp/vault => /.fluence/v1/stepper/particles/vault ``` I want to download file via curl or ipfs and specify output to `/tmp/vault/XXX`. So I want to do...