Skip to content
Advertisement

Tag: rust

Issue installing python bcrypt in Cygwin

I’m trying to install paramiko in Cygwin and one of the build dependencies is bcrypt. I have rustc installed and I believe all of the supporting build libraries. Pip is also updated to the latest. I use the following pip command: And I get the following error output: I check my python installation (python.exe) and it is installed at /usr/bin/python.exe.

Exporting HashMap of HashMap to Python

I have a text parser written in Rust and want to provide a Python interface to it using pyo3. The parser returns a HashMap within a HashMap and the values of the inner HashMap are of type serde_json::Value. When I try to return this as a PyObject I get an error that I am unable to solve. This is a

Advertisement