summaryrefslogtreecommitdiff
path: root/src/rust/Cargo.toml
blob: 3efbf1334343f54c61d2e249c51c6658a76b22b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "cryptography-rust"
version = "0.1.0"
authors = ["The cryptography developers <cryptography-dev@python.org>"]
edition = "2021"
publish = false
# This specifies the MSRV
rust-version = "1.56.0"

[dependencies]
once_cell = "1"
pyo3 = { version = "0.18", features = ["abi3-py37"] }
asn1 = { version = "0.15.2", default-features = false }
cryptography-cffi = { path = "cryptography-cffi" }
cryptography-x509 = { path = "cryptography-x509" }
cryptography-openssl = { path = "cryptography-openssl" }
pem = "1.1"
ouroboros = "0.15"
openssl = "0.10.52"
openssl-sys = "0.9.87"
foreign-types-shared = "0.1"

[build-dependencies]
cc = "1.0.72"

[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]

[lib]
name = "cryptography_rust"
crate-type = ["cdylib"]

[profile.release]
overflow-checks = true

[workspace]
members = ["cryptography-cffi", "cryptography-openssl", "cryptography-x509"]