我正在尝试在 Elrond rust 智能合约中解码以 JSON 编码的属性。我正在用serde
箱子解析它。我的合同编译得很好,但是当我部署它时,我得到了一个无效的合同代码。
这是我的 Cargo.toml
[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
请问如何处理 rust 智能合约上的 JSON 属性?