Aaron DeVore
Aaron DeVore
The new version uses PASSWORD_HASHERS. Note that 1.10a1 is not in the travis.yml file for django-ajax, so it has not been tested in a sandbox. I think adding 1.10a1 might...
As a workaround, this jq filter will make the transformation as part of a pipeline: ```bash jq '[.[] | { package_name: .[0], upper_version: .[1], installed_version: .[2], description: .[3], var: .[4]}]'...
Yes, that's what I was thinking of mimicking. I found a [ticket from 2018](https://github.com/clap-rs/clap/issues/1365) discussing clap's size. It sounds like the help strings are somewhat large. This shouldn't be an...
How about this. I don't think this needs any changes to the core of Nushell, even if it would benefit from living in the workspace. Therefore, I can work on...
Would this work with a conditional import? Keep all asyncio references confined to certain files and only import those under eligible versions of Python 3?
Progress so far: - [x] Empty (root) - [x] Leaf1 - [x] Leaf2 - [x] VecLeaf - [ ] Jpm - [ ] Empty (JPM)? - [ ] BranchBitmap -...
This is an interesting possibility, but I am unclear what the code would look like. I'm going to keep this as a back burner item for now, but I would...
I'm also eyeing benchmarks with the reference Judy implementation, which already has Rust bindings in the judy crate. Benchmarks in general would be good for avoiding performance regressions.
TOML's nesting tables may be a better fit. ```toml [env-packages.dev] sqlite3 = "*" [env-packages.test] psycopg2 = "*" ``` Unfortunately, the table style of package specifications clashes with using `[packages.]`. So...