mirror of
https://github.com/readest/readest.git
synced 2026-04-28 19:42:21 +00:00
22 lines
594 B
TOML
22 lines
594 B
TOML
[package]
|
|
name = "tauri-plugin-native-bridge"
|
|
version = "0.1.0"
|
|
authors = [ "You" ]
|
|
description = "a bridge between tauri app and native OS functionality"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]
|
|
links = "tauri-plugin-native-bridge"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2" }
|
|
serde = "1.0"
|
|
thiserror = "2"
|
|
schemars = "0.8"
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { version = "2", features = ["build"] }
|
|
schemars = "0.8"
|
|
|
|
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
|
|
font-enumeration = "0.9.0"
|