-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 848 Bytes
/
Cargo.toml
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
33
[package]
edition = "2021"
name = "brine-db"
version = "0.0.0"
[workspace]
members = ["crates/entity", "crates/migration"]
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.16.4", default-features = false, features = [
"napi8",
"tokio_rt",
] }
# https://github.com/sfackler/rust-openssl/issues/763#issuecomment-1150213102
# openssl = { version = "0.10.64", features = ["vendored"] }
# https://github.com/launchbadge/sqlx/issues/3189
# https://github.com/launchbadge/sqlx/pull/3190
time = "=0.3.37"
napi-derive = "2.16.3"
brinedb-entity = { path = "crates/entity" }
brinedb-migration = { path = "crates/migration" }
[build-dependencies]
napi-build = "2.1.3"
[profile.release]
lto = true
strip = "symbols"