Vinzent Steinberg

Results 84 comments of Vinzent Steinberg

> Like this when I import tokei I can disable most features and get rid of these unnecessary dependencies like clap? This should work, but I think you will have...

This PR is partially obsolete, because nalgebra uses rand 0.8. Are there some parts left that are worth porting or should this be closed?

#864 was merged, which included some of the remaining changes in this PR. What still needs to be merged is the following: * Rework features (`std`, `alloc`, `no_std`) * Clean...

@pkgw I don't remember which package it was, but I think I was able to use texlive to extract the files, which tectonic was able to use.

The easiest workaround would be to use the newtype pattern to define a public type: ```rust concatenate!(PrivateEstimator, ...); pub struct PublicEstimator(PrivateEstimator); ``` However, this will result in quite a bit...

I merged this manually, after resolving the conflicts. Thanks again!

By aesthetically more pleasing, are you referring to the produced plot or to the code implementing the plots?

> Agreed on that one. Perhaps the behavior can be changed from using all available CPU cores to only using half of them. Or just lower the priority of the...

It is not obvious and simple, because `std` currently relies on `libc` for math functions, which `core` cannot use. The different options are discussed at length in the issue description,...