You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2023. It is now read-only.
Hello!
Recently the Diem Association (read: Facebook 😆 ) has been very interested to expand Move support to platforms such as NEAR (in fact, directly sponsored by Facebook).
This can lead to a situation, where a feature (for example: retrieving current time) can be implemented differently on Diem, Pontem and NEAR (since that would be platform specific, not language specific).
So, I would like to request a feature that would permit compiling different files if on a certain platform, and would also include (and exclude) some dependencies accordingly.
For example:
If on Diem, would compile DiemHelpers.move implementing Helpers-module, and include diem-stdlib as a dependency.
If on Pontem, would compile PontemHelpers.move implementing Helpers-module (and not DiemHelpers.move).
Other .move files could then just use Helper::getTime().
(Of course all of this would be project specific, and defined in Dove.toml.)
Hello!
Recently the Diem Association (read: Facebook 😆 ) has been very interested to expand Move support to platforms such as NEAR (in fact, directly sponsored by Facebook).
This can lead to a situation, where a feature (for example: retrieving current time) can be implemented differently on Diem, Pontem and NEAR (since that would be platform specific, not language specific).
So, I would like to request a feature that would permit compiling different files if on a certain platform, and would also include (and exclude) some dependencies accordingly.
For example:
DiemHelpers.moveimplementingHelpers-module, and includediem-stdlibas a dependency.PontemHelpers.moveimplementingHelpers-module (and not DiemHelpers.move)..movefiles could then just useHelper::getTime().(Of course all of this would be project specific, and defined in
Dove.toml.)