Skip to content

Commit

Permalink
feat: Added most of v7 serialization/deserialization
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Mar 21, 2018
1 parent 9bf5cbc commit 89e6c04
Show file tree
Hide file tree
Showing 3 changed files with 277 additions and 163 deletions.
7 changes: 6 additions & 1 deletion src/protocol/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//! This module exposes the types for the Sentry protocol in different versions.
pub mod v1;
pub mod v7;

/// the always latest sentry protocol version
pub mod latest {
pub use super::v7::*;
}
162 changes: 0 additions & 162 deletions src/protocol/v1.rs

This file was deleted.

Loading

0 comments on commit 89e6c04

Please sign in to comment.