mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
36eee37220
* Restructure the repository * lock file * fmt * fix bench * fix cli template test * remove accidental file * fix mv command * clippy * upgrade paths-filter github action * fix cli migration tests * lockfile * license headers * clippy * scope test-core to tauri crate * license header * correct --manifest-path usage * lockfile * fix tauri-driver on macOS [skip ci] * build target ios * try downgrade env_logger * downgrade 0.1.7 * try to fix bench * bench overflow * revert overflow fix, fix tauri_root_path * revert env_logger downgrade * fmt * raise msrv to 1.71 * fmt * delete .cargo/config.toml [skip ci] --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
23 lines
575 B
TOML
23 lines
575 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "tauri-cli-node"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "2.16", default-features = false, features = ["napi4"] }
|
|
napi-derive = "2.16"
|
|
tauri-cli = { path = "../../crates/tauri-cli", default-features = false }
|
|
log = "0.4.21"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[features]
|
|
default = ["tauri-cli/default"]
|
|
native-tls = ["tauri-cli/native-tls"]
|
|
native-tls-vendored = ["tauri-cli/native-tls-vendored"]
|