DmitrySamoylov

Results 5 issues of DmitrySamoylov

Hey! It looks like the following use case is not supported yet. Let's say I have such versions in s3 bucket: - `0.1.1` - `0.1.2-beta` And in Cargo.toml I have...

Helpful crate for this purposes: https://crates.io/crates/thiserror

For example have a look at `MediaUri`

Some cameras use self-signed cert which cannot be validated by default. Need to either ignore validation or allow passing the cert for communications. Reqwest supports both ways https://docs.rs/reqwest/0.10.4/reqwest/struct.Certificate.html https://docs.rs/reqwest/0.10.4/reqwest/struct.ClientBuilder.html#method.danger_accept_invalid_certs

It is useful to have at least a basic test for each generated struct to verify that yaserde works fine for all cases. ```rust #[test] fn test_profile() { ser_de(tt::Profile::default()); }...