mirror of
https://example.com
synced 2024-11-22 16:06:38 +09:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "backend-rs"
|
|
version = "0.0.0"
|
|
|
|
[features]
|
|
default = ["napi"]
|
|
napi = ["dep:napi-derive"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.77"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.32"
|
|
cuid2 = "0.1.2"
|
|
idna = "0.5.0"
|
|
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.12", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
serde_json = "1.0.111"
|
|
serde_yaml = "0.9.30"
|
|
thiserror = "1.0.56"
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
url = "2.5.0"
|
|
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "2.14.4", default-features = false, features = ["napi9", "tokio_rt", "chrono_date", "serde-json"] }
|
|
napi-derive = { version = "2.14.6", optional = true }
|
|
basen = "0.1.0"
|
|
urlencoding = "2.1.3"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1.0"
|
|
|
|
[profile.release]
|
|
lto = true
|