mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +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
22 lines
413 B
TOML
22 lines
413 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "tauri-cli-node"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi = "3"
|
|
napi-derive = "3"
|
|
tauri-cli = { path = "../../crates/tauri-cli", default-features = false }
|
|
log = "0.4.21"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.2"
|
|
|
|
[features]
|
|
default = ["tauri-cli/default"]
|
|
native-tls = ["tauri-cli/native-tls"]
|
|
native-tls-vendored = ["tauri-cli/native-tls-vendored"]
|