From f2b3bd5a215ff28e74e9fc4fe594d82b05e05db9 Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Wed, 3 Aug 2022 09:40:24 +0200 Subject: [PATCH] adding `abi3-py38` to pyo3 for best target support --- apis/python/node/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/python/node/Cargo.toml b/apis/python/node/Cargo.toml index 124615c6..99d6bb04 100644 --- a/apis/python/node/Cargo.toml +++ b/apis/python/node/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] dora-node-api = { path = "../../rust/node" } -pyo3 = { version = "0.16", features = ["eyre"] } +pyo3 = { version = "0.16", features = ["eyre", "abi3-py38"] } eyre = "0.6" futures = "0.3.21" tokio = { version = "1.17.0", features = ["rt", "sync", "macros"] }