mirror of
https://github.com/ankitects/anki.git
synced 2025-12-07 03:47:13 -05:00
The only dependency which required nightly compilers was pyo3, which supports stable Rust (1.39.0 and later) since version 0.11.0. Supporting stable Rust makes it easier to package Anki for distributions. No other code changes were required. Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
19 lines
439 B
TOML
19 lines
439 B
TOML
[package]
|
|
name = "ankirspy"
|
|
version = "2.1.34" # automatically updated
|
|
edition = "2018"
|
|
authors = ["Ankitects Pty Ltd and contributors <https://help.ankiweb.net>"]
|
|
license = "AGPL-3.0-or-later"
|
|
description = "Anki's Rust library code Python bindings"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
anki = { path = "../rslib" }
|
|
|
|
[dependencies.pyo3]
|
|
version = "0.11.0"
|
|
features = ["extension-module"]
|
|
|
|
[lib]
|
|
name = "ankirspy"
|
|
crate-type = ["cdylib"]
|