E__Man
E__Man
Hi, Proof verification does not work for any combination of indices. Here's what I tried: ```rust let leaves = [ Sha256::hash("a".as_bytes()), Sha256::hash("b".as_bytes()), Sha256::hash("c".as_bytes()), Sha256::hash("d".as_bytes()), ]; let merkle_tree = MerkleTree::::from_leaves(&leaves); let...
# Proposal ## Problem statement I need to set file attributes on Windows, and I found it's exactly what `std::fs::set_permissions` does. However, struct `std::fs::Permissions` only exposes attribute `readonly`. I would...
Hi, I've just experienced a strange behaviour with `StringProvider` (I'm not sure if it's a bug or not). I have generated key `kME8GX8+2nhtfVXyLZkPeHLRfkUO99nbJpjAnbC9bZA=` using `base64_encode(random_bytes(256 / 8))`. I'm trying to...
This allows the `with_[x|y]_range` fns to shrink the display range (i.e. to zoom). This fixes #49 in a cleaner way than the previous PR.
Zoom
Hello, Currently, it seems `Series::with_x_range` and `Series::with_y_range` only allow to extend the bounds of the axes, not shrink them. I would like to be able to "zoom" on part of...
Linear gradients set with `Line::with_gradient` always use the Y data range to interpolate the color. Custom ranges set with `Series::with_y_range` are ignored. The data do not necessarily cover all the...
Hello, Currently, the automatically derived implementation (which uses `serde::private::de::borrow_cow_bytes`) can only deserialize `Cow, ); #[test] fn test() { let foo = Foo(Cow::Owned(vec![0, 159, 146, 150])); // Invalid UTF-8 let json...