Add pyo3 support:

This commit is contained in:
Jeong YunWon 2023-05-20 15:45:54 +09:00
parent e6e77cf6d5
commit bfc997cf1f
2 changed files with 2 additions and 1 deletions

View file

@ -31,6 +31,7 @@ itertools = "0.10.3"
is-macro = "0.2.2"
log = "0.4.16"
num-complex = "0.4.0"
num-bigint = "0.4.3"
num-traits = "0.2"
pyo3 = { version = "0.18.3" }
malachite-bigint = { version = "0.1.5", git = "https://github.com/qingshi163/malachite-bigint.git" }

View file

@ -21,7 +21,7 @@ rustpython-parser-core = { workspace = true }
rustpython-literal = { workspace = true, optional = true }
is-macro = { workspace = true }
num-bigint = { workspace = true, optional = true }
static_assertions = "1.1.0"
pyo3 = { workspace = true, optional = true, features = ["num-bigint", "num-complex"] }
malachite-bigint = { workspace = true }