feat: update deps

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-09-24 22:09:36 +02:00
parent 8a6e5c7ac0
commit 8beaeb53d7
7 changed files with 24 additions and 20 deletions

View File

@@ -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

View File

@@ -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,
}

View File

@@ -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>,
}