ordian

Results 154 comments of ordian

I'll close the PR as ubuntu commonly used in CI currently uses an old version of LLVM.

I think it has more to do with the llvm version than with Ubuntu's: https://github.com/rust-fuzz/honggfuzz-rs/runs/2096378570#step:1:4.

cc #4 > Avoiding copies where necessary. (Rather than decoding the value, return &[u8].)

@mykmelez why not just this (a breaking change)? ```rust pub fn put(self, txn: &mut RwTransaction, k: K, v: V) -> Result; pub fn get(self, txn: &T, k: K) -> Result...

~~or if you want to keep the `Value` type~~ ```rust pub fn put>(self, txn: &mut RwTransaction, k: K, v: V) -> Result; ``` EDIT: V: AsRef should work for `Value`...

> I wonder if it would be sufficient to expose a new Store type (`RawStore`?) that takes and returns only `&[u8]` values. I'm unsure how to generalize that across the...

> I wonder if it would be possible to make store types enums, with a variant that accepts the `value::Value` type and another that generalizes across types implementing the `Value`...

Can you install any other cargo subcommands, e.g. https://github.com/sfackler/cargo-tree? I see you're using `x86_64-pc-windows-gnu` rust toolchain, have you tried using [windows native toolchain](https://github.com/rust-lang/rustup#vs2019)?

The reason I ask is this problem doesn't seem to be specific to cargo-edit.

@gigavinyl hey, it seems that openssl_sys dependency is coming from git2: https://github.com/rust-lang/git2-rs/blob/f0bfe7ac0cbee58b11f1708eca4f76b4828146c0/Cargo.toml#L25-L26 Could you try to build that library? Maybe the fix is as simple as to make it `cfg(not(target_os...