summaryrefslogtreecommitdiff
path: root/src/rust/Cargo.toml
blob: 6d2a1e199c188440394912e6fea25a158f910c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "cryptography-rust"
version = "0.1.0"
authors = ["The cryptography developers <cryptography-dev@python.org>"]
edition = "2018"
publish = false

[dependencies]
pyo3 = { version = "0.13.1", features = ["extension-module"] }
asn1 = { version = "0.3.1", default-features = false }

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

[profile.release]
lto = "thin"
overflow-checks = true