feat!: update marine-rs-sdk to 0.14.0, remove all of json_path remains (#820)

* support call_parameters v2

* remove old comment

* use released marine

* fix test wasm

* update sdk marine use lens

* fix test module

* WIP fixing the tests to use lens

* WIP tetraplet field renaming test fixes

* rename more lambda to lens

* fix build

* Fix gen-bench-data compilation

* Update gen-bench-data Cargo.lock

* Fix signature tests

---------

Co-authored-by: drrtuy <roman@fluence.one>
Co-authored-by: Ivan Boldyrev <ivan@fluence.one>
This commit is contained in:
Valery Antopol
2024-02-22 11:57:27 +04:00
committed by GitHub
parent b9f04dfbaf
commit 08e85478b4
49 changed files with 582 additions and 326 deletions

View File

@ -18,10 +18,7 @@ pub(super) fn is_air_alphanumeric(ch: char) -> bool {
ch.is_alphanumeric() || ch == '_' || ch == '-'
}
pub(super) fn is_json_path_allowed_char(ch: char) -> bool {
// we don't have spec for json path now, but some possible example could be found here
// https://packagist.org/packages/softcreatr/jsonpath
pub(super) fn is_lens_allowed_char(ch: char) -> bool {
// good old switch faster here than hash set
match ch {
'$' => true,