concordium-rust-smart-contracts
concordium-rust-smart-contracts copied to clipboard
Describe which parts of Rust should not be used in smart contracts
We have a brief mention of the fact you can’t use floats, but we do not have any more details on the limitations on resources, and more importantly, limitations on input/output functionality, and lack of threads.
And the fact that the platform is a 32-bit one.
- You cannot use any IO functionality
- Modules can be at most 65k
- No concurrency.
- ...?