forked from pyca/cryptography
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 659 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 659 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
[workspace]
resolver = "2"
members = [
"src/rust/",
"src/rust/cryptography-cffi",
"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.65.0"
[workspace.dependencies]
asn1 = { version = "0.18.0", default-features = false }
pyo3 = { version = "0.23.0", features = ["abi3"] }
[profile.release]
overflow-checks = true