anki/pylib/rsbridge/Cargo.toml

21 lines
497 B
TOML
Raw Normal View History

2019-12-23 05:42:14 +01:00
[package]
name = "rsbridge"
2020-11-02 06:02:30 +01:00
version = "0.0.0"
2021-11-18 11:51:10 +01:00
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"
2019-12-23 05:42:14 +01:00
[dependencies]
2020-11-02 06:02:30 +01:00
anki = { path = "../../rslib" }
2020-11-24 09:41:03 +01:00
# /cargo/update.py needs to be run if updating the version below
2019-12-23 05:42:14 +01:00
[dependencies.pyo3]
2021-11-18 11:54:00 +01:00
version = "0.15.0"
2021-10-04 07:05:15 +02:00
features = ["extension-module", "abi3", "abi3-py39"]
2019-12-23 05:42:14 +01:00
[lib]
name = "rsbridge"
2019-12-23 05:42:14 +01:00
crate-type = ["cdylib"]
2020-11-02 06:02:30 +01:00
path = "lib.rs"