Skip to content

Commit

Permalink
Nightly Protos (#1155)
Browse files Browse the repository at this point in the history
Co-authored-by: mkysel <7513948+mkysel@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and mkysel authored Oct 21, 2024
1 parent a7bd4b5 commit 04c2cde
Show file tree
Hide file tree
Showing 10 changed files with 4,163 additions and 7 deletions.
8 changes: 5 additions & 3 deletions xmtp_proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ default = []
# @@protoc_deletion_point(features)
# This section is automatically generated by protoc-gen-prost-crate.
# Changes in this area may be lost on regeneration.
proto_full = ["xmtp-identity","xmtp-identity-api-v1","xmtp-identity-associations","xmtp-keystore_api-v1","xmtp-message_api-v1","xmtp-message_contents","xmtp-mls-api-v1","xmtp-mls-database","xmtp-mls-message_contents","xmtp-mls_validation-v1","xmtp-xmtpv4"]
proto_full = ["xmtp-identity","xmtp-identity-api-v1","xmtp-identity-associations","xmtp-keystore_api-v1","xmtp-message_api-v1","xmtp-message_contents","xmtp-mls-api-v1","xmtp-mls-database","xmtp-mls-message_contents","xmtp-mls_validation-v1","xmtp-xmtpv4-envelopes","xmtp-xmtpv4-message_api","xmtp-xmtpv4-payer_api"]
"xmtp-identity" = []
"xmtp-identity-api-v1" = ["xmtp-identity","xmtp-identity-associations"]
"xmtp-identity-associations" = ["xmtp-identity","xmtp-message_contents"]
Expand All @@ -37,5 +37,7 @@ proto_full = ["xmtp-identity","xmtp-identity-api-v1","xmtp-identity-associations
"xmtp-mls-database" = []
"xmtp-mls-message_contents" = []
"xmtp-mls_validation-v1" = ["xmtp-identity-api-v1","xmtp-identity-associations"]
"xmtp-xmtpv4" = ["xmtp-identity-associations","xmtp-mls-api-v1"]
## @@protoc_insertion_point(features)
"xmtp-xmtpv4-envelopes" = ["xmtp-identity-associations","xmtp-mls-api-v1"]
"xmtp-xmtpv4-message_api" = ["xmtp-xmtpv4-envelopes"]
"xmtp-xmtpv4-payer_api" = ["xmtp-xmtpv4-envelopes"]
## @@protoc_insertion_point(features)
22 changes: 18 additions & 4 deletions xmtp_proto/src/gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,24 @@ pub mod xmtp {
// @@protoc_insertion_point(xmtp.mls_validation.v1)
}
}
#[cfg(feature = "xmtp-xmtpv4")]
// @@protoc_insertion_point(attribute:xmtp.xmtpv4)
pub mod xmtpv4 {
include!("xmtp.xmtpv4.rs");
// @@protoc_insertion_point(xmtp.xmtpv4)
#[cfg(feature = "xmtp-xmtpv4-envelopes")]
// @@protoc_insertion_point(attribute:xmtp.xmtpv4.envelopes)
pub mod envelopes {
include!("xmtp.xmtpv4.envelopes.rs");
// @@protoc_insertion_point(xmtp.xmtpv4.envelopes)
}
#[cfg(feature = "xmtp-xmtpv4-message_api")]
// @@protoc_insertion_point(attribute:xmtp.xmtpv4.message_api)
pub mod message_api {
include!("xmtp.xmtpv4.message_api.rs");
// @@protoc_insertion_point(xmtp.xmtpv4.message_api)
}
#[cfg(feature = "xmtp-xmtpv4-payer_api")]
// @@protoc_insertion_point(attribute:xmtp.xmtpv4.payer_api)
pub mod payer_api {
include!("xmtp.xmtpv4.payer_api.rs");
// @@protoc_insertion_point(xmtp.xmtpv4.payer_api)
}
}
}
339 changes: 339 additions & 0 deletions xmtp_proto/src/gen/xmtp.xmtpv4.envelopes.rs

Large diffs are not rendered by default.

Loading

0 comments on commit 04c2cde

Please sign in to comment.