anki/pylib/rsbridge/Cargo.toml
Damien Elmes 26c640805c Update Rust deps
axum-client-ip excluded, as it will need further work.
2023-03-31 14:38:24 +10:00

29 lines
647 B
TOML

[package]
name = "rsbridge"
publish = false
description = "Anki's Rust library code Python bindings"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
anki = { path = "../../rslib" }
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
# /cargo/update.py needs to be run if updating the version below
[dependencies.pyo3]
version = "0.18.2"
features = ["extension-module", "abi3", "abi3-py39"]
[lib]
name = "rsbridge"
crate-type = ["cdylib"]
path = "lib.rs"
[features]
rustls = ["anki/rustls"]
native-tls = ["anki/native-tls"]