Sinotov Aleksandr
Sinotov Aleksandr
Hello again! These PRs have no new functionality, but may be implementing a more idiomatic way to test `serde::{Serialize, Deserialize}` by `serde_test` crate. But because `ArcSwapAny` doesn't have `Eq`, `PartialEq`...
Greetings! ## Motivation So, why there `boxed error` instead of `Infallible`? There are no errors in these part, but because there `boxed error` it makes problem to use like this:...
Hello everyone! I can't figure out how implement something like this: ```graphql interface A { id: String, } type A0 implements A { id: String, count: Int, } interface B...
Greetings! Found some FIXME in sources.
Greetings! Any way to use prefix which contains different sub prefix without duplication? What I mean: ```rust use config::{Config, Environment}; fn main() { std::env::set_var("FOO_BAR_FIRST", "1"); std::env::set_var("FOO_SECOND", "2"); let conf =...
Greetings! Is there is a bug what integers are limited by `2^63-1`? ```rust use config::{Config, Environment, File, FileFormat}; fn main() { // Ok println!( "number: `{}`.", read_conf().get::("data.number").unwrap() ); // Ok...
Greetings! I can choose only one type of compression in `Cargo.toml` but can't use it in code. This PR fix it.
Greetings! The problem is that I can't split structure into several structures and unite them through flatten. P.S. `serde_json` is just to show the problem. I faced with it using...
Greetings! Got error: ```log thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: missing field `first`', src/main.rs:55:10 stack backtrace: 0: rust_begin_unwind at /rustc/4b91a6ea7258a947e59c6522cd5898e7c0a6a88f/library/std/src/panicking.rs:584:5 1: core::panicking::panic_fmt at /rustc/4b91a6ea7258a947e59c6522cd5898e7c0a6a88f/library/core/src/panicking.rs:142:14 2: core::result::unwrap_failed...
Greetings! `grpcio` 0.9 with `openssl` flag still take `boringssl-src` as dependency. It was fixed in `0.10`: https://github.com/tikv/grpc-rs/pull/558