-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "libsql-js"
version = "0.6.0-pre.30"
description = ""
authors = ["Pekka Enberg <penberg@iki.fi>"]
license = "MIT"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
glob-match = "0.2"
libsql = { version = "0.9.30", features = ["encryption"] }
napi = { version = "2", default-features = false, features = ["napi6", "tokio_rt", "async"] }
napi-derive = "2"
once_cell = "1.18.0"
regex = "1"
serde_json = "1.0.140"
tokio = { version = "1.47.1", features = [ "rt-multi-thread" ] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
ntest = "0.9"
tokio = { version = "1.47.1", features = ["test-util", "macros"] }
[build-dependencies]
napi-build = "2.0.1"
[profile.release]
lto = true