Anki/pylib/rsbridge/Cargo.toml
Damien Elmes d542ae9065 Fix check action on Windows ARM
- 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
2025-06-20 16:52:25 +07:00

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"]