Vyacheslav Gudkov

Results 36 comments of Vyacheslav Gudkov

@chaeso Could you describe the problem you are trying to solve? Your script changes that force x64 tools for all platforms don't look obvious for me.

@ianco > I've tried doing a local iOS build with these updates and am getting errors, looks like it's not finding the arm64 build for openssl? Seems you are using...

@swcurran Do you plan to use `dereferencing` instead of `resolving` to achieve this? See https://www.w3.org/TR/did-core/#did-url-dereferencing Will it be dedicated endpoint?

Does it look fast enough for RSA-like crypto needs? For now i use OpenSSL, but consider switching to some rust-native solution to simplify cross-platforms builds and deployment.

If you interested in we can benchmark it over OpenSSL together. My BN wrapper over OpenSSL is placed here https://github.com/hyperledger/indy-crypto/blob/master/libindy-crypto/src/bn/openssl.rs I am interesting in performance of calls: ``` pub fn...

Thanks for this work. I will check on my side this week.

@singulared Sure, the issue is more aesthetic, but there are still some practical aspects: 1. In first option you are provided we mix prefixed and non-prefixed names. Practical problem here...

> Btw, you can create a type alias for actix_web_validator::Json in your own code Usually if i need define my own types it is just sign of not well defined...

@pleerock new User() and create() are different as for the moment the only possible way to static check property assignment is the following: ``` const entityLike: Omit = { ......

I was able to compile it for android with NDK 21 using the following command ``` PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/darwin-x86_64/bin:$PATH CXX="armv7a-linux-androideabi21-clang++" BINDGEN_EXTRA_CLANG_ARGS="--target=armv7-linux-androideabi" cargo build --target armv7-linux ``` and specification of path to ar...