mirror of
https://github.com/fluencelabs/aquavm
synced 2025-06-26 13:11:35 +00:00
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:
@ -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,
|
||||
|
Reference in New Issue
Block a user