Eirik A
Eirik A
Ah, thanks had not seen that. Perhaps a separate classification problem, but https://artifacthub.io/packages/helm/fluxcd-community/flux2?modal=changelog&version=2.2.0 also does not document 2.2.0 as a breaking change.
likely postgres interactions with openssl. there is a workaround in the readme and a similar issue if you search the repo.
you have extern crate in the right order also? https://github.com/clux/muslrust/blob/main/test/pqcrate/src/main.rs#L1-L2
That looks wrong, see the tests: https://github.com/clux/muslrust/blob/e13ed1f904f3da2ff105a10e1f71511dfc1678c2/test/dieselpgcrate/src/main.rs#L1-L5
hm, yeah, appreciate the issue. Upon looking at this again, I kind of feel like the [original intention](https://github.com/kube-rs/kopium/issues/3) of `--hide-prelude` (allow custom crate names) has slowly morphed into a flag...
**hunch:** npm is also linking in the dependencies of a module you're linking in, and it will get confused when it doesn't find them in the same folder.
Smallest reproducible set I have found: Clone 5 repos from [clux](https://github.com/clux): ``` sh Cloning into 'bandage'... Cloning into 'smell'... Cloning into 'ffa'... Cloning into 'tiebreaker'... Cloning into 'tournament'... ``` Try...
With only 4 repositories (but significantly less warnings): ``` sh git clone https://github.com/clux/smell git clone https://github.com/clux/ffa git clone https://github.com/clux/tiebreaker git clone https://github.com/clux/tournament cd ~/repos/smell && npm install bandage istanbul cd...
With only 3 repositories: ``` sh git clone https://github.com/clux/smell git clone https://github.com/clux/ffa git clone https://github.com/clux/tiebreaker cd /root/repos/smell && npm install bandage istanbul cd /root/repos/smell && npm link cd /root/repos/ffa &&...
Without symlink magic: ``` sh git clone https://github.com/clux/smell git clone https://github.com/clux/ffa git clone https://github.com/clux/tiebreaker cd smell npm install npm link cd ../ffa npm link smell npm install npm link cd...