-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 977 Bytes
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
[workspace]
resolver = "2"
members = [
"src/rust/",
"src/rust/cryptography-cffi",
"src/rust/cryptography-crypto",
"src/rust/cryptography-keepalive",
"src/rust/cryptography-key-parsing",
"src/rust/cryptography-openssl",
"src/rust/cryptography-x509",
"src/rust/cryptography-x509-verification",
]
[workspace.package]
version = "0.1.0"
authors = ["The cryptography developers <cryptography-dev@python.org>"]
edition = "2021"
publish = false
# This specifies the MSRV
rust-version = "1.83.0"
license = "Apache-2.0 OR BSD-3-Clause"
[workspace.dependencies]
asn1 = { version = "0.24.1", default-features = false }
base64 = "0.22"
cc = "1.2.59"
cfg-if = "1"
foreign-types = "0.3"
foreign-types-shared = "0.1"
openssl = "0.10.76"
openssl-sys = "0.9.111"
pem = { version = "3", default-features = false }
pyo3 = { version = "0.28", features = ["abi3"] }
pyo3-build-config = { version = "0.28" }
self_cell = "1"
[profile.release]
overflow-checks = true