Stanisław Drozd

Results 10 issues of Stanisław Drozd

`vcpkg`, one of the packages built by naersk specifies a README located outside its crate directory, in its wider cargo workspace root. It appears that `naersk` didn't catch that. ```shell...

Like in the subject, if I attempt to deserialize a JSON with a time like `20180505T214800Z` into a struct that derives `Deserialize` and wants to keep it in a `DateTime`...

When you run `spago repl -d` it will only load your dependencies which allows for running the repl without the code compiling. The same would be very nice for `spago...

So far, I love this crate! But it's pretty unintuitive how printing the generated structs with `{:?}` formatting doesn't do anything at all (no compile-time error, just nothing where a...

I'd like to build for a bare-metal crate for a different architecture. How do I pick the arch without having nix flip out about choosing which gcc to use?

I'm using your IPFS crate where `IpfsClient::add` has a weird trait requirement that comes from `Form::add_reader` - namely it demands `'static`. **Why?** I'm trying to get a git object reader...

In current state `transfer_from` executes against an `Allowance` entry with `to` as the spender side , which is wrong. The spender side should be verified against the sender of the...

IIUC `transfer_from` needs to notify everyone about the changed allowance after some of it is spent. Presently, the amount used in the `Approval` event is the transaction amount instead of...

In `transfer_from` the allowance subtraction happens before `_transfer` gets the chance to check that `from` has sufficient token funds. As a result the following erroneous scenario is possible: * Alice...

# Codebase version master @ [23a95dd84d917f388db33f66423231f3e3ae5761](https://github.com/tinygrad/tinygrad/commit/23a95dd84d917f388db33f66423231f3e3ae5761) # Problem behavior The optimizer gets confused when printing Tensor.numpy() values in `__call__` and throws on `assert x is not None` looking for `t.grad`....