Skip to content

Commit

Permalink
Update prost dependency, re-generate googleplay.rs, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Hainish committed Jul 26, 2024
1 parent 3134279 commit f4d7795
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 52 deletions.
6 changes: 3 additions & 3 deletions googleplay-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "googleplay-protobuf"
version = "2.0.0"
version = "2.1.0"
authors = ["Bill Budington <[email protected]>"]
build = "build.rs"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ description = "The automatically generated types derived from the Google Play Pr
repository = "https://github.com/EFForg/rs-google-play/tree/master/googleplay-protobuf"

[dependencies]
prost = "0.12"
prost = "0.13"

[build-dependencies]
prost-build = "0.12"
prost-build = "0.13"
20 changes: 20 additions & 0 deletions googleplay-protobuf/protos/GooglePlay.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,26 @@ message Item {
optional bool useWishlistAsPrimaryAction = 33;
optional string reviewQuestionsUrl = 34;
optional string reviewSummaryUrl = 39;
optional ContentRating contentRating = 50;
}

message ContentRating {
message ContentRatingImage {
message Dimension {
optional int32 width = 3;
optional int32 height = 4;
}
message Image {
optional string url = 1;
}
optional Dimension dimension = 3;
optional Image image = 6;
}
optional string title = 1;
optional string recommendationAndDescriptionHtml = 2;
optional ContentRatingImage contentRatingImage = 3;
optional string recommendation = 5;
optional string description = 6;
}

message AppInfo {
Expand Down
Loading

0 comments on commit f4d7795

Please sign in to comment.