Crates.io | streamdal-transform |
lib.rs | streamdal-transform |
version | 0.0.7 |
source | src |
created_at | 2023-10-19 20:31:14.468023 |
updated_at | 2023-10-19 20:31:14.468023 |
description | JSON data transformation lib used by snitch components |
homepage | |
repository | https://github.com/streamdal/wasm-transform |
max_upload_size | |
id | 1008317 |
size | 21,588 |
Library used by streamdal/wasm to perform transformations on JSON payloads.
Currently only has support for overwrite
, mask
and obfuscate
.
fn main() {
let sample_json = r#"{"hello": "world"}"#;
let req = Request {
data: sample_json.into(),
path: "hello".to_string(),
value: r#""baz""#.to_string(),
};
let updated_json = streamdal_transform::transform::overwrite(&req).unwrap();
println!(
"Input JSON: {} || Result JSON: {}",
sample_json, updated_json,
)
}
overwrite()
"123"
)mask()
2. Works for numbers and strings
3. For numbers, it will replace 80% of the number characters with 0
4. For strings, it will replace 80% of the characters with *
obfuscate()
2. Works ONLY on strings
3. Will replace 100% of the characters with a sha256 hash