| 1 |
[package] |
| 2 |
name = "quasi-tauri" |
| 3 |
version = "0.109.0" |
| 4 |
description = "The Tauri custom-protocol host adapter for quasi-router: a webview request in, a rendered description out" |
| 5 |
edition.workspace = true |
| 6 |
rust-version.workspace = true |
| 7 |
authors.workspace = true |
| 8 |
repository.workspace = true |
| 9 |
license.workspace = true |
| 10 |
publish = false |
| 11 |
|
| 12 |
[lints] |
| 13 |
workspace = true |
| 14 |
|
| 15 |
[dependencies] |
| 16 |
quasi-router = { path = "../quasi-router", version = "0.109" } |
| 17 |
quasi-http = { path = "../quasi-http", version = "0.109" } |
| 18 |
http = "1.3.1" |
| 19 |
# Default features off: this crate uses tauri's protocol registration and its |
| 20 |
# blocking pool, and nothing else. An app brings the features it wants, and the |
| 21 |
# adapter should not be what turns on a tray icon or a webview devtools build. |
| 22 |
tauri = { version = "2.11.5", default-features = false } |
| 23 |
|
| 24 |
[dev-dependencies] |
| 25 |
quasi-webview = { path = "../quasi-webview", version = "0.109" } |
| 26 |
# The doctest names a concrete `Runtime`, and `Wry` is behind a default feature |
| 27 |
# this crate does not otherwise ask for. Only the example needs it: nothing in |
| 28 |
# the test module builds a window, which is what keeps them runnable with no |
| 29 |
# display. |
| 30 |
tauri = { version = "2.11.5" } |
| 31 |
|