avrow
avrow copied to clipboard
Avrow is a pure Rust implementation of the avro specification https://avro.apache.org/docs/current/spec.html with Serde support.
Results
1
avrow issues
Sort by
recently updated
recently updated
newest added
Hi. I'm unable to understand why we have Value::Union. I attempted to run this code: ``` use anyhow::Error; use avrow::{Schema, Writer}; use std::str::FromStr; fn main() -> Result { let schema...