Serialize custom persistent fields as base64

This still takes up more space than plain JSON would, but I don't know
if serde_json would allow inlining that JSON. Presumably not. It would
get hairy quickly as a regular embedded JSON string due to the encoding.
This commit is contained in:
Robbert van der Helm
2022-01-30 18:15:01 +01:00
parent 29a0f83163
commit 3111d75b29
3 changed files with 42 additions and 2 deletions

7
Cargo.lock generated
View File

@@ -8,6 +8,12 @@ version = "1.0.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "gain"
version = "0.1.0"
@@ -31,6 +37,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
name = "nih_plug"
version = "0.1.0"
dependencies = [
"base64",
"lazy_static",
"nih_plug_derive",
"serde",