mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

- Update nextest (not required) - Build nextest without self-update, which pulls in ring - Disable running of tests in rsbridge, as it has no tests, and requires host arch's python.lib to execute - A double \ in CARGO_TARGET_DIR was breaking update_* tests
23 lines
439 B
TOML
23 lines
439 B
TOML
[package]
|
|
name = "rsbridge"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
rust-version.workspace = true
|
|
description = "Anki's Rust library code Python bindings"
|
|
|
|
[lib]
|
|
name = "rsbridge"
|
|
crate-type = ["cdylib"]
|
|
path = "lib.rs"
|
|
test = false
|
|
|
|
[dependencies]
|
|
anki.workspace = true
|
|
pyo3.workspace = true
|
|
|
|
[features]
|
|
rustls = ["anki/rustls"]
|
|
native-tls = ["anki/native-tls"]
|