mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 11:34:21 +01:00
27 lines
768 B
TOML
27 lines
768 B
TOML
[package]
|
|
name = "turso_node"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "The Turso database library Node bindings"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
turso_core = { workspace = true }
|
|
napi = { version = "3.1.3", default-features = false, features = ["napi6"] }
|
|
napi-derive = { version = "3.1.1", default-features = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tracing.workspace = true
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
|
|
|
[features]
|
|
encryption = ["turso_core/encryption"]
|
|
browser = []
|
|
tracing_release = ["turso_core/tracing_release"]
|
|
[build-dependencies]
|
|
napi-build = "2.2.3"
|