[package]
name = "synta-python"
version = "0.1.3"
edition = "2021"
description = "Python extension module for the synta ASN.1 library"
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/abbra/synta"
[lib]
name = "_synta"
crate-type = ["cdylib"]
[features]
default = ["openssl"]
openssl = ["synta-certificate/openssl"]
deprecated-pkcs12-algorithms = ["synta-certificate/deprecated-pkcs12-algorithms"]
[dependencies]
synta = { version = "0.1.0", path = "..", default-features = false, features = ["std", "derive"] }
synta-certificate = { version = "0.1.0", path = "../synta-certificate", default-features = false, features = ["derive", "std"] }
synta-krb5 = { version = "0.1.0", path = "../synta-krb5", default-features = false, features = ["derive", "std"] }
synta-x509-verification = { version = "0.1.0", path = "../synta-x509-verification" }
pyo3 = { version = "> 0.26, <0.28", default-features = false, features = ["abi3-py38", "extension-module", "macros"] }