aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/rust
diff options
context:
space:
mode:
authorS. Solomon Darnell2025-03-28 21:52:21 -0500
committerS. Solomon Darnell2025-03-28 21:52:21 -0500
commit4a52a71956a8d46fcb7294ac71734504bb09bcc2 (patch)
treeee3dc5af3b6313e921cd920906356f5d4febc4ed /.venv/lib/python3.12/site-packages/rust
parentcc961e04ba734dd72309fb548a2f97d67d578813 (diff)
downloadgn-ai-master.tar.gz
two version of R2R are hereHEADmaster
Diffstat (limited to '.venv/lib/python3.12/site-packages/rust')
-rw-r--r--.venv/lib/python3.12/site-packages/rust/Cargo.toml35
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-cffi/Cargo.toml17
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-keepalive/Cargo.toml10
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-key-parsing/Cargo.toml17
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-openssl/Cargo.toml17
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-x509-verification/Cargo.toml16
-rw-r--r--.venv/lib/python3.12/site-packages/rust/cryptography-x509/Cargo.toml11
7 files changed, 123 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/rust/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/Cargo.toml
new file mode 100644
index 00000000..9eb165a9
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/Cargo.toml
@@ -0,0 +1,35 @@
+[package]
+name = "cryptography-rust"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+once_cell = "1"
+cfg-if = "1"
+pyo3.workspace = true
+asn1.workspace = true
+cryptography-cffi = { path = "cryptography-cffi" }
+cryptography-keepalive = { path = "cryptography-keepalive" }
+cryptography-key-parsing = { path = "cryptography-key-parsing" }
+cryptography-x509 = { path = "cryptography-x509" }
+cryptography-x509-verification = { path = "cryptography-x509-verification" }
+cryptography-openssl = { path = "cryptography-openssl" }
+pem = { version = "3", default-features = false }
+openssl = "0.10.68"
+openssl-sys = "0.9.104"
+foreign-types-shared = "0.1"
+self_cell = "1"
+
+[features]
+extension-module = ["pyo3/extension-module"]
+default = ["extension-module"]
+
+[lib]
+name = "cryptography_rust"
+crate-type = ["cdylib"]
+
+[lints.rust]
+unexpected_cfgs = { level = "warn", check-cfg = ['cfg(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER)', 'cfg(CRYPTOGRAPHY_OPENSSL_309_OR_GREATER)', 'cfg(CRYPTOGRAPHY_OPENSSL_320_OR_GREATER)', 'cfg(CRYPTOGRAPHY_IS_LIBRESSL)', 'cfg(CRYPTOGRAPHY_IS_BORINGSSL)', 'cfg(CRYPTOGRAPHY_OSSLCONF, values("OPENSSL_NO_IDEA", "OPENSSL_NO_CAST", "OPENSSL_NO_BF", "OPENSSL_NO_CAMELLIA", "OPENSSL_NO_SEED", "OPENSSL_NO_SM4"))'] }
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-cffi/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-cffi/Cargo.toml
new file mode 100644
index 00000000..9408de8b
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-cffi/Cargo.toml
@@ -0,0 +1,17 @@
+[package]
+name = "cryptography-cffi"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+pyo3.workspace = true
+openssl-sys = "0.9.104"
+
+[build-dependencies]
+cc = "1.2.1"
+
+[lints.rust]
+unexpected_cfgs = { level = "warn", check-cfg = ['cfg(python_implementation, values("CPython", "PyPy"))'] }
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-keepalive/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-keepalive/Cargo.toml
new file mode 100644
index 00000000..baf8d934
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-keepalive/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "cryptography-keepalive"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+pyo3.workspace = true
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-key-parsing/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-key-parsing/Cargo.toml
new file mode 100644
index 00000000..9b96b736
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-key-parsing/Cargo.toml
@@ -0,0 +1,17 @@
+[package]
+name = "cryptography-key-parsing"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+asn1.workspace = true
+cfg-if = "1"
+openssl = "0.10.68"
+openssl-sys = "0.9.104"
+cryptography-x509 = { path = "../cryptography-x509" }
+
+[lints.rust]
+unexpected_cfgs = { level = "warn", check-cfg = ['cfg(CRYPTOGRAPHY_IS_LIBRESSL)', 'cfg(CRYPTOGRAPHY_IS_BORINGSSL)'] }
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-openssl/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-openssl/Cargo.toml
new file mode 100644
index 00000000..3d4c17eb
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-openssl/Cargo.toml
@@ -0,0 +1,17 @@
+[package]
+name = "cryptography-openssl"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+cfg-if = "1"
+openssl = "0.10.68"
+ffi = { package = "openssl-sys", version = "0.9.101" }
+foreign-types = "0.3"
+foreign-types-shared = "0.1"
+
+[lints.rust]
+unexpected_cfgs = { level = "warn", check-cfg = ['cfg(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER)', 'cfg(CRYPTOGRAPHY_OPENSSL_320_OR_GREATER)', 'cfg(CRYPTOGRAPHY_IS_LIBRESSL)', 'cfg(CRYPTOGRAPHY_IS_BORINGSSL)'] }
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-x509-verification/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-x509-verification/Cargo.toml
new file mode 100644
index 00000000..2cc2ff48
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-x509-verification/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "cryptography-x509-verification"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+publish.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+asn1.workspace = true
+cryptography-x509 = { path = "../cryptography-x509" }
+cryptography-key-parsing = { path = "../cryptography-key-parsing" }
+once_cell = "1"
+
+[dev-dependencies]
+pem = { version = "3", default-features = false }
diff --git a/.venv/lib/python3.12/site-packages/rust/cryptography-x509/Cargo.toml b/.venv/lib/python3.12/site-packages/rust/cryptography-x509/Cargo.toml
new file mode 100644
index 00000000..03f2c260
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/rust/cryptography-x509/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "cryptography-x509"
+version = "0.1.0"
+authors = ["The cryptography developers <cryptography-dev@python.org>"]
+edition = "2021"
+publish = false
+# This specifies the MSRV
+rust-version = "1.65.0"
+
+[dependencies]
+asn1.workspace = true