A serialization/deserialization implementation for Common Data Representation in Rust.
Add this to your Cargo.toml:
toml
[dependencies]
cdr = { git = "https://github.com/hrektts/cdr-rs" }
Then add this to your crate:
rust
extern crate cdr;
``` rust extern crate cdr;
extern crate serde_derive;
use cdr::{CdrBe, Infinite};
struct Point { x: f64, y: f64, }
struct Polygon(Vec
fn main() { let triangle = Polygon(vec![Point { x: -1.0, y: -1.0 }, Point { x: 1.0, y: -1.0 }, Point { x: 0.0, y: 0.73 }]);
let encoded = cdr::serialize::<_, _, CdrBe>(&triangle, Infinite).unwrap();
let decoded = cdr::deserialize::<Polygon>(&encoded[..]).unwrap();
assert!(triangle == decoded);
} ```
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.