Certainly! ```
# dpkg -l python3-cryptography +-- Desired=Unknown/Install/Remove/Purge/Hold |+- Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig- aWait/Trig-pend ||+ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||| Name Version Architecture Description +++-====================-============-============- ============================================================ ii python3-cryptography 46.0.5-1 amd64 Python library exposing cryptographic recipes and primitives # ls -l /usr/lib/python3/dist- packages/cryptography/hazmat/bindings/_rust.abi*.so -rw-r--r-- 1 root root 4102176 Feb 14 13:51 /usr/lib/python3/dist- packages/cryptography/hazmat/bindings/_rust.abi3-x86_64-linux-gnu.so # python3 -c "import cryptography.hazmat.bindings._rust;print(cryptography.hazmat.bindings._ rust);print(cryptography.hazmat.bindings._rust.x509)" <module 'cryptography.hazmat.bindings._rust' (namespace) from ['/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/_rust']> Traceback (most recent call last): File "<string>", line 1, in <module> AttributeError: module 'cryptography.hazmat.bindings._rust' has no attribute 'x509' ```

