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-02 09:17:26 +01:00
|
|
|
# WARNING: if changing the version number here, the version in ../../cargo/update.py
|
|
|
|
# needs to be updated as well
|
2019-12-23 05:42:14 +01:00
|
|
|
[dependencies.pyo3]
|
2020-10-28 00:57:14 +01:00
|
|
|
version = "0.12.0"
|
2019-12-23 05:42:14 +01:00
|
|
|
features = ["extension-module"]
|
|
|
|
|
|
|
|
[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"
|
2020-10-09 11:51:02 +02:00
|
|
|
|
2020-11-02 06:02:30 +01:00
|
|
|
#[profile.dev]
|
|
|
|
#opt-level = 2
|
|
|
|
#debug = 0
|
|
|
|
#codegen-units = 256
|
2020-10-09 12:02:15 +02:00
|
|
|
|
2020-11-02 06:02:30 +01:00
|
|
|
#[profile.dev.package."*"]
|
|
|
|
#opt-level = 3
|
|
|
|
#codegen-units = 16
|