2019-12-23 05:42:14 +01:00
|
|
|
[package]
|
2020-11-02 09:17:26 +01:00
|
|
|
name = "rsbridge"
|
2020-11-02 06:02:30 +01:00
|
|
|
version = "0.0.0"
|
2019-12-23 05:42:14 +01:00
|
|
|
edition = "2018"
|
2020-04-03 00:44:59 +02:00
|
|
|
authors = ["Ankitects Pty Ltd and contributors <https://help.ankiweb.net>"]
|
2020-04-02 04:01:48 +02:00
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
description = "Anki's Rust library code Python bindings"
|
2019-12-23 05:42:14 +01:00
|
|
|
|
2019-12-24 04:33:44 +01:00
|
|
|
[dependencies]
|
2020-11-02 06:02:30 +01:00
|
|
|
anki = { path = "../../rslib" }
|
2019-12-24 04:33:44 +01:00
|
|
|
|
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-10-02 12:42:03 +02:00
|
|
|
version = "0.14.5"
|
|
|
|
features = ["extension-module", "abi3", "abi3-py38"]
|
2019-12-23 05:42:14 +01:00
|
|
|
|
|
|
|
[lib]
|
2020-11-02 09:17:26 +01:00
|
|
|
name = "rsbridge"
|
2019-12-23 05:42:14 +01:00
|
|
|
crate-type = ["cdylib"]
|
2020-11-02 06:02:30 +01:00
|
|
|
path = "lib.rs"
|