mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* fix: CEF CI * fmt * update to rust 1.88, edition 2024 * install x86_64-apple-darwin * linux clippy * fix --all-features * more all-features fixes * install x86 apple * fix windows * fix doc tests * skip --all-featuress test for android and ios * more clippy fixes * install target * fix build, clippy * export cef for tests * pin version * fix arg
19 lines
452 B
TOML
19 lines
452 B
TOML
[package]
|
|
name = "resources"
|
|
version = "0.1.0"
|
|
description = "A Tauri application that uses Node.js with app resources"
|
|
edition = "2024"
|
|
rust-version = "1.88"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../crates/tauri-build", features = ["codegen"] }
|
|
|
|
[dependencies]
|
|
serde_json = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tauri = { path = "../../../crates/tauri", features = [] }
|
|
|
|
[features]
|
|
cef = ["tauri/cef"]
|
|
wry = ["tauri/wry"]
|