@@ -6,7 +6,7 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
crunch = { workspace = true,default-features = false, features = ["in-memory"] }
|
||||
crunch = { workspace = true, features = ["in-memory"] }
|
||||
|
||||
tracing.workspace = true
|
||||
tokio.workspace = true
|
||||
|
@@ -1,5 +1,6 @@
|
||||
#[allow(clippy::derive_partial_eq_without_eq)]
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
pub struct MyInclude {
|
||||
#[prost(string, tag="1")]
|
||||
pub name: std::string::String,
|
||||
#[prost(string, tag = "1")]
|
||||
pub name: ::prost::alloc::string::String,
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
#[allow(clippy::derive_partial_eq_without_eq)]
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
pub struct MyEvent {
|
||||
#[prost(string, tag="1")]
|
||||
pub name: std::string::String,
|
||||
#[prost(message, optional, tag="2")]
|
||||
pub include: ::std::option::Option<super::includes::my_include::MyInclude>,
|
||||
#[prost(string, tag = "1")]
|
||||
pub name: ::prost::alloc::string::String,
|
||||
#[prost(message, optional, tag = "2")]
|
||||
pub include: ::core::option::Option<super::includes::my_include::MyInclude>,
|
||||
}
|
||||
|
Reference in New Issue
Block a user