anki/pylib/rsbridge/Cargo.toml
2021-11-18 20:58:41 +10:00

21 lines
497 B
TOML

[package]
name = "rsbridge"
version = "0.0.0"
edition = "2021"
authors = ["Ankitects Pty Ltd and contributors <https://help.ankiweb.net>"]
license = "AGPL-3.0-or-later"
description = "Anki's Rust library code Python bindings"
[dependencies]
anki = { path = "../../rslib" }
# /cargo/update.py needs to be run if updating the version below
[dependencies.pyo3]
version = "0.15.0"
features = ["extension-module", "abi3", "abi3-py39"]
[lib]
name = "rsbridge"
crate-type = ["cdylib"]
path = "lib.rs"