Description: Force vendored sources for maturin
 Maturin attempts to fetch dependencies online, but will as such fail
 to build. This patch updates the configuration to force vendored
 sources.
Author: Simon Johnsson <simon.johnsson@canonical.com>

---
Forwarded: not-needed
Last-Update: 2026-01-16

--- /dev/null
+++ python-cryptography-46.0.1/.cargo/config.toml
@@ -0,0 +1,9 @@
+[source.crates-io]
+replace-with = "vendored-sources"
+
+[source.vendored-sources]
+directory = "rust-vendor"
+
+[net]
+offline = true
+
