Failed to deserialize camelcase fields for yaml file https://github.com/vladgon/rust/blob/49854f6c3d02bf7ae4a8d123ac9ecfbbe3959a56/wspace/wg_util/src/common/config/model.rs#L24 ```rust #[derive(Deserialize, Serialize, Debug)] #[allow(non_snake_case)] pub struct Kafka { pub broker: String, pub topic: String, pub pollSleep: u64, //<--- } ``` https://github.com/vladgon/rust/blob/49854f6c3d02bf7ae4a8d123ac9ecfbbe3959a56/wspace/wg_sample_app/resources/app_config.yaml#L9 ```yaml kafka: broker: localhost:29092 topic: rust pollSleep: 1000 ``` https://github.com/vladgon/rust/blob/49854f6c3d02bf7ae4a8d123ac9ecfbbe3959a56/wspace/wg_util/src/common/config/app_config.rs#L73-L78