Skip to content

Commit

Permalink
Example bodged rfc8949 implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxxep committed Nov 26, 2024
1 parent 7c6ba83 commit 5689cfc
Show file tree
Hide file tree
Showing 4 changed files with 262 additions and 79 deletions.
8 changes: 5 additions & 3 deletions ciborium/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,14 @@ pub mod value;

// Re-export the [items recommended by serde](https://serde.rs/conventions.html).
#[doc(inline)]
pub use crate::de::from_reader;
pub use crate::de::{from_reader, from_reader_with_buffer, Deserializer};

#[doc(inline)]
pub use crate::de::from_reader_with_buffer;
pub use crate::ser::{into_writer, Serializer};

#[doc(inline)]
pub use crate::ser::into_writer;
#[cfg(feature = "std")]
pub use crate::ser::{into_writer_canonical, to_vec, to_vec_canonical};

#[doc(inline)]
pub use crate::value::Value;
Expand Down
Loading

0 comments on commit 5689cfc

Please sign in to comment.