-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added basic protocol types in separate module
- Loading branch information
Showing
4 changed files
with
68 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,14 @@ authors = ["Sentry <[email protected]>"] | |
[dependencies] | ||
failure = "0.1.1" | ||
failure_derive = "0.1.1" | ||
url = "1.6.0" | ||
serde = "1.0.27" | ||
serde_derive = "1.0.27" | ||
serde_json = "1.0.9" | ||
serde_plain = "0.2.0" | ||
url = "1.7.0" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
serde_plain = "0.3.0" | ||
url_serde = "0.2.0" | ||
|
||
[patch.crates-io] | ||
serde = { git = "https://github.com/mitsuhiko/serde", branch = "feature/flatten" } | ||
serde_derive = { git = "https://github.com/mitsuhiko/serde", branch = "feature/flatten" } | ||
serde_derive_internals = { git = "https://github.com/mitsuhiko/serde", branch = "feature/flatten" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
//! This module exposes the types for the Sentry protocol in different versions. | ||
pub mod v1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters