2022-02-10 04:11:00 +03:00
|
|
|
[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
|
2024-03-03 17:36:35 +03:00
|
|
|
napi = { version = "2.16", default-features = false, features = ["napi4"] }
|
|
|
|
napi-derive = "2.16"
|
2023-06-01 06:04:14 +03:00
|
|
|
tauri-cli = { path = "..", default-features = false }
|
2024-03-03 17:36:35 +03:00
|
|
|
log = "0.4.21"
|
2022-02-10 04:11:00 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-11-14 05:58:27 +03:00
|
|
|
napi-build = "2.1"
|
2023-06-01 06:04:14 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["tauri-cli/default"]
|
2023-06-02 14:04:48 +03:00
|
|
|
native-tls = ["tauri-cli/native-tls"]
|
2023-06-01 06:04:14 +03:00
|
|
|
native-tls-vendored = ["tauri-cli/native-tls-vendored"]
|