Add dependency on cryptography for the exporter
Marco Ricci

Marco Ricci commited on 2024-08-17 01:23:36
Zeige 1 geänderte Dateien mit 6 Einfügungen und 0 Löschungen.

... ...
@@ -32,6 +32,12 @@ version = "0.1.3"
32 32
 [project.optional-dependencies]
33 33
 dev = ["black", "coverage", "hatch>=1.10", "mkdocs", "mkdocs-material",
34 34
        "mkdocstrings[python]", "pytest>=8.1", "towncrier>=23.11"]
35
+export = [
36
+  # The vault configuration exporter relies on cryptography.  Version 38 was
37
+  # the first to include the `algorithms.AES256` interface, instead of only
38
+  # the `algorithms.AES` interface.
39
+  "cryptography >= 38.0.0",
40
+]
35 41
 
36 42
 [project.urls]
37 43
 Documentation = "https://the13thletter.info/derivepassphrase/"
38 44