Closed wagenet closed 2 years ago
Instead of doing use serde::{Serialize ,Deserialize} everywhere, can't we just do #[derive(serde::Serialize, serde::Deserialize)]? This would remove the need for the workaround here https://github.com/fdeantoni/prost-wkt#oneof-types.
use serde::{Serialize ,Deserialize}
#[derive(serde::Serialize, serde::Deserialize)]
Addressed with commit 08f3487.
Thanks!
Instead of doing
use serde::{Serialize ,Deserialize}
everywhere, can't we just do#[derive(serde::Serialize, serde::Deserialize)]
? This would remove the need for the workaround here https://github.com/fdeantoni/prost-wkt#oneof-types.