67dad81e99
to be compatible with Node-API version 9: https://nodejs.org/api/n-api.html#node-api-version-matrix
42 lines
1 KiB
TOML
42 lines
1 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "backend-rs"
|
|
version = "0.0.0"
|
|
rust-version = "1.74"
|
|
|
|
[features]
|
|
default = []
|
|
napi = ["dep:napi", "dep:napi-derive"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.75"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.31"
|
|
cuid2 = "0.1.2"
|
|
jsonschema = "0.17.1"
|
|
once_cell = "1.19.0"
|
|
parse-display = "0.8.2"
|
|
rand = "0.8.5"
|
|
schemars = { version = "0.8.16", features = ["chrono"] }
|
|
sea-orm = { version = "0.12.10", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
thiserror = "1.0.52"
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "2.16.0", default-features = false, features = ["napi9", "tokio_rt"], optional = true }
|
|
napi-derive = { version = "2.16.0", optional = true }
|
|
basen = "0.1.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1.0"
|
|
|
|
[profile.release]
|
|
lto = true
|