fdeantoni / prost-wkt

Prost Well-Known-Types serialization and deserialization.
Apache License 2.0
75 stars 37 forks source link

Qualify derives #11

Closed wagenet closed 2 years ago

wagenet commented 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.

fdeantoni commented 2 years ago

Addressed with commit 08f3487.

wagenet commented 2 years ago

Thanks!