1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
[package]
name = "python-proton-vpn-local-agent"
version = "1.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[profile.release]
# Strip debug symbols in release builds
strip = true
[dependencies]
local-agent-rs = { path = "../local_agent_rs" }
pyo3 = {version="0.27.1", features = ["extension-module", "abi3-py38"]}
pyo3-async-runtimes = {version="0.28.0", features = ["attributes", "tokio-runtime"]}
tokio = { version = "1.38.0", features = ["full"] }
log = "0.4.22"
thiserror = "2.0.16"
|