Wren Turkal
Wren Turkal
Would it make sense to add env vars for the service discovery that look like docker links env vars? https://docs.docker.com/userguide/dockerlinks/#environment-variables
Should ec2 instance tags be a dict? Instead they are None when there a no tags or a list of dicts when there are tags. It's not very convenient. It...
Here's one example of the error: http://boto3.readthedocs.org/en/latest/reference/services/iam.html#IAM.RolePolicy.policy_document The documentation says a string is returned. Actually, a dict is returned. It's okay to have a dict created from the json, I...
### What feature would you like to see? I would like to seem something like this allowed: ``` using XType; if (header.pointer_size == PointerSize::_32) { XType = le u64; }...
### Summary Can esdoc please be made to also output docs for the protected methods (like the constructor on the Driver class)? ### Steps to reproduce 1. Look at Neo4j...
The thiserror crate takes care of a bunch of details of implementing errors for a library in rust. This will simplify the code around our errors by making it follow...
The parser allows XML declarations anywhere in the file. If a declaration exists it should be at the very beginning of the file. Also, only one declaration should be allowed....
The cargo msrv verification fails since some dependency requires once_cell. The github action does not find this as it doesn't actually use cargo-msrv to find the msrv. The action only...
I would like to refactor the errors crate to use the [thiserror](https://crates.io/crates/thiserror) crate. The patterns implemented in the module are very similar to the crate. The crate is widely used...
I have a git repo with multiple generation templates. ``` /examples/ -> aaa -> bbb ``` Some of the templates have files with the same contents. ``` examples/aaa -> Makefile.toml...