-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iroha_wasm_builder
: remove cargo
invocation
#2152
Comments
Maybe we can use |
@Erigara , cool idea |
iroha_wasm_builder
: remove cargo
invocation
Blocked by hyperledger-archives/ursa#232 |
@Arjentix, What are some of the problems that can be encountered? I only seem to find rust-lang/cargo#6412, and this one:
|
@DCNick3 , the problem was found when we were using our |
I think it's actually called |
I don't think that using cargo as a library is a good idea. Mainly because its API is perma-unstable and is not gonna be stabilized soon. Other problem I can see is ignoring the rustup config, but ig with us using a pinned nightly version for building smart contracts that's wouldn't be a problem. And, well, it doesn't seem necessary IMO: the There's also |
Right now there is a problem -- we have to invoke
cargo
from ouriroha_wasm_builder
to be able to build Rust Smartcontract in WASM. That can cause problems with cargo recursion problem (cargo doesn't like to be invoked multiple times from it self).There is a
wasm-builder crate
which can help us with that. But I'm not 100% sure it can do all what we need. We need to do a research and try to use itThe text was updated successfully, but these errors were encountered: