rgb-cln/cln-rpc
Riccardo Casatta 182a9cdcb6 cln-rpc: use serde rename instead of alias
rename is necessary to roundtrip, otherwise the rust name is used.

This also remove the rename if they are not necessary.

Note that:
```
 #[serde(rename="foo", skip_serializing_if=="bar")]
 pub field: bool,
```

is equivalent to:
```
 #[serde(rename="foo")]
 #[serde(skip_serializing_if=="bar")]
 pub field: bool,
```

and for simplicity of construction the latter is used
2023-01-26 15:03:54 +01:00
..
examples cln-rpc: Test that we forward errors correctly 2022-04-02 09:46:01 +10:30
src cln-rpc: use serde rename instead of alias 2023-01-26 15:03:54 +01:00
Cargo.toml rs: Add cln-rpc metadata 2023-01-02 14:33:02 +01:00
Makefile make: Clean up duplicate cargo examples build rules 2023-01-16 13:53:48 +10:30
README.md doc: update c-lightning to Core Lightning almost everywhere. 2022-04-07 06:53:26 +09:30

README.md

cln-rpc: Talk to Core Lightning